LinHES Forums http://forum.linhes.org/ |
|
How can I switch the active monitor on the fly http://forum.linhes.org/viewtopic.php?f=6&t=18266 |
Page 1 of 2 |
Author: | infinitenothing [ Sun May 04, 2008 10:51 pm ] |
Post subject: | How can I switch the active monitor on the fly |
Is there a command line or a shortcut key that will switch the active monitor (I have two plugged into the dual head graphics card) on the fly (without rebooting)? |
Author: | cecil [ Wed May 07, 2008 10:56 pm ] |
Post subject: | |
Well, if I had this issue, I'd create two shell scripts. One that would copy A and for for B of the different xorg.conf. Then, I'd make a shortcut in Fluxbox that called A with perhaps <ALT><A> and one for B with <ALT><B>. Perhaps something like: Code: #!/bin/bash Of course, you'd have to put the scripts in /etc/sudoers...
cp /etc/X11/xorg.conf.A /etc/X11/xorg.conf #Uncomment the below to have X restarted #pkill X |
Author: | infinitenothing [ Wed May 07, 2008 11:35 pm ] |
Post subject: | |
Clever. Would killing X mean I'd have to restart mythwelcome or whatever I had open? The reason I want to do this is sometimes I just want to check the listing guide or something and don't want to start up my big energy sucking main display which takes a bit of time to warm up. |
Author: | cecil [ Thu May 08, 2008 2:23 am ] |
Post subject: | |
You'll notice, I commented that line. MythTV should start back up. KnoppMyth-run is what we use to kickoff the frontend. Whatever other program you had running, yes you'd have to restart. If all you want to do is check the listing guide, etc. why not use MythWeb? http://ip.of.your.backend. Lots of good info there! |
Author: | infinitenothing [ Thu May 08, 2008 7:38 am ] |
Post subject: | |
cecil wrote: You'll notice, I commented that line. MythTV should start back up. KnoppMyth-run is what we use to kickoff the frontend. Whatever other program you had running, yes you'd have to restart.
If all you want to do is check the listing guide, etc. why not use MythWeb? http://ip.of.your.backend. Lots of good info there! Yeah, I thought about MythWeb. Definitely a cool little interface. Especially if you want to copy/paste in a setup property. That might be what I do. The only downside is it involves going to another computer and you can't watch TV from it (afaik). Thanks for your input. |
Author: | davefor [ Sun May 11, 2008 7:54 am ] |
Post subject: | switching between pvr350 and gf7600 |
Would this also work to switch between pvr350 s-video out and GeForce component output. I noticed that what you are doing is having two xorg.conf files and changing from one to the other. I watch recordings in my room non=HDTV s-video via pvr350 just bought a HDHR and geforce7600 w/component out to use on my living room HDTV. The only other way i can see is to split the component out and covert one over to s-video but that may cost some bucks to do. |
Author: | cecil [ Sun May 11, 2008 7:18 pm ] |
Post subject: | |
Yes, it would. |
Author: | BluesBrian [ Mon May 12, 2008 12:52 am ] |
Post subject: | |
OK, so I'm not the swiftest boat in the harbor, especially in the "No Wake" zone. I'm looking at my /etc/X11 and wondering... Code: lrwxrwxrwx 1 root root 22 Feb 24 19:57 xorg.conf -> /etc/X11/xorg.conf.350
-rw-r--r-- 1 root root 1107 Feb 24 19:57 xorg.conf.350 -rw-r--r-- 1 root root 4659 May 8 2006 xorg.conf.in -rw-r--r-- 1 root root 13400 Dec 13 2006 xorg.conf.nvidia.tv.out.sample lrwxrwxrwx 1 root root 22 Oct 6 2007 xorg.conf.pre350 -> /etc/X11/xorg.conf.350 drwxr-xr-x 2 root root 4096 Jun 2 2007 xserver Should this all be done using symbolic links? .. As in, switch the link, then restart X. I take it that "xorg.conf.350" is the configuration for going out the PVR-350 and the "xorg.conf.nvidia.tv.out.sample" is for going out to my nVidia video card. |
Author: | cecil [ Mon May 12, 2008 1:05 am ] |
Post subject: | |
BluesBrian wrote: Should this all be done using symbolic links? It can be done however you want it...
|
Author: | BluesBrian [ Mon May 12, 2008 7:57 am ] |
Post subject: | |
cecil wrote: BluesBrian wrote: Should this all be done using symbolic links? It can be done however you want it...Since, as I said, "I'm not the swiftest boat in the harbor", how would that be done in script? Thanks! |
Author: | cecil [ Mon May 12, 2008 12:46 pm ] |
Post subject: | |
Let's say we have 3 files in /etc/X11: Quote: xorg.conf
xorg.conf.A xorg.conf.B At the moment, xorg.conf is a symlink to A. Code: #!/bin/bash
ln -sf /etc/X11/xorg.conf.B /etc/X11/xorg.conf |
Author: | roofchop [ Tue Jun 10, 2008 11:59 am ] |
Post subject: | |
cecil wrote: Well, if I had this issue, I'd create two shell scripts. One that would copy A and for for B of the different xorg.conf. Then, I'd make a shortcut in Fluxbox that called A with perhaps <ALT><A> and one for B with <ALT><B>. Perhaps something like:
Code: #!/bin/bash Of course, you'd have to put the scripts in /etc/sudoers...cp /etc/X11/xorg.conf.A /etc/X11/xorg.conf #Uncomment the below to have X restarted #pkill X I am trying to do something similar, but maybe someone could help me out with the rest of the detail. I have my 2 xorg.conf files, and can change them from the command line. How do I make them into scripts? How do I create a shortcut in fluxbox? Sorry for the noob questions, any help or links would be appreciated. JJ |
Author: | infinitenothing [ Tue Jun 10, 2008 12:22 pm ] |
Post subject: | |
To write a script, just copy the text into a new file and then give the file run permissions. Typically, I have to add the script to my sudoers file and then in the flux box app, call the script with the sudo command Code: # nano /usr/bin/ThisIsMyScriptName.sh # chmod +x /usr/bin/ThisIsMyScriptName.sh # chmod 755 /usr/bin/ThisIsMyScriptName.sh To edit the sudoer file: Code: nano /etc/sudoers Just add your script path to the end of the MythTV user sectionI think the fluxbox key file is Code: # /etc/X11/fluxbox/keys It should be easy to edit. It's basically a list of keys and corresponding commands. Your command should be: Code: sudo /usr/bin/ThisIsMyScriptName.sh
|
Author: | mjl [ Tue Jun 10, 2008 5:00 pm ] |
Post subject: | |
Hi, You could do it from a menu choice...then switching could be done from a remote. .. Put it down a couple layers so you can save it behind the pin gate so the kids don't mess with your head ![]() I put those scripts in the /usr/bin/ and to keep them seperate use a common prefix for them. run- sw- ch- so any future additions would be grouped together when looking for them down the road. #<code> Code: #!/bin/sh # frozen-bubble & #festival loading frozen bubbles, please wait. # #<end code> set permissions: -rwxr-xr-x 1 root root 97 Jun 25 2006 /usr/bin/run-bubbles Add a button, or two Code: <button>
<type>GAME</type> <text>Frozen-Bubbles</text> <action>EXEC /usr/games/frozen-bubble</action> </button> I simply copied the games.xml into .mythtv/ added the button(s) as I needed / wanted them and now it is a menu item. Change a few words here & there and now I expect you could switch the xorg links also. Do be sure to save your little run scripts in the /home/myth some place in case you do an upgrade that you can put them back ![]() Mike |
Author: | roofchop [ Tue Jun 10, 2008 11:03 pm ] |
Post subject: | |
Thanks for all the help, but I have run into a couple of problems. 1) My scripts would only copy the xorg.conf files when I ran them as root 2) My lcdswitch.sh script doesn't reactivate my lcd display. I might need to add a bit of background.... I was running myth with just my 22" LCD from the VGA of my video card. I added a projector off the DVI, and the video only works on the projector. I unplugged the projector, rebooted and video worked on the LCD again, so I saved the xorg.conf as xorg.conf.lcd, I plugged the projector back in and video worked on the projector, so I saved that xorg.conf as xorg.conf.projector. I thought I could just set up this switch between the two. When I try the lcdswitch.sh script as root with the projector plugged in, it switches the xorg.conf files, but doesn't enable video on the LCD. The best solution would just have the video work on both all the time, but have so far been unsuccessful. Alternatively, which config file is changing. Thanks for the input, I have been working on this problem off and on for a long time. lcdswitch.sh Code: #/!bin/sh cp /etc/X11/xorg.conf.lcd /etc/X11/xorg.conf pkill x projectorswitch.sh Code: #/!bin/sh cp /etc/X11/xorg.conf.projector /etc/X11/xorg.conf pkill x xorg.conf.lcd Code: #LCD xorg.conf Section "ServerLayout" Identifier "XFree86 Configured" Screen 0 "Screen0" 0 0 InputDevice "Keyboard0" "CoreKeyboard" # PS/2 Mouse not detected # Serial Mouse not detected InputDevice "USB Mouse" "CorePointer" EndSection Section "ServerFlags" Option "AllowMouseOpenFail" "true" EndSection Section "Files" RgbPath "/usr/share/X11/rgb" ModulePath "/usr/lib/xorg/modules" FontPath "/usr/share/fonts/X11/misc:unscaled" FontPath "/usr/share/fonts/X11/75dpi:unscaled" FontPath "/usr/share/fonts/X11/100dpi:unscaled" FontPath "/usr/share/fonts/X11/Type1" FontPath "/usr/share/fonts/X11/Speedo" FontPath "/usr/share/fonts/X11/PEX" # Additional fonts: Locale, Gimp, TTF... FontPath "/usr/share/fonts/X11/cyrillic" # FontPath "/usr/share/fonts/X11/latin2/75dpi" # FontPath "/usr/share/fonts/X11/latin2/100dpi" # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig! FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" FontPath "/usr/share/fonts/truetype" FontPath "/usr/share/fonts/latex-ttf-fonts" EndSection Section "Module" # Comments: see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=346408 Load "dbe" # Double Buffering Extension, very important. Load "dri" # This shouldn't be available choice if user has selected driver vga, vesa or nv. Load "glx" # GLX Extension. Load "freetype" # Freetype fonts. Load "type1" # Type 1 fonts Load "record" # Developer extension, usually not needed # Load "extmod" # This is okay, but if you look into "man xorg.conf" you'll find option NOT to include DGA extension with extmod, and for a good reason.. DGA causes instability as it access videoram without consulting X about it. SubSection "extmod" Option "omit xfree86-dga" EndSubSection # Load "speedo" # Speedo fonts, this module doesn't exist in Xorg 7.0.17 # The following are deprecated/unstable/unneeded in Xorg 7.0 # Load "ddc" # ddc probing of monitor, this should be never present, as it gets automatically loaded. # Load "GLcore" # This should be never present, as it gets automatically loaded. # Load "bitmap" # Should be never present, as it gets automatically loaded. This is a font module, and loading it in xorg.conf makes X try to load it twice. EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "us" EndSection Section "InputDevice" Identifier "Serial Mouse" Driver "mouse" Option "Protocol" "Microsoft" Option "Device" "/dev/ttyS0" Option "Emulate3Buttons" "true" Option "Emulate3Timeout" "70" Option "SendCoreEvents" "true" EndSection Section "InputDevice" Identifier "PS/2 Mouse" Driver "mouse" Option "Protocol" "auto" Option "ZAxisMapping" "4 5" Option "Device" "/dev/psaux" Option "Emulate3Buttons" "true" Option "Emulate3Timeout" "70" Option "SendCoreEvents" "true" EndSection Section "InputDevice" Identifier "USB Mouse" Driver "mouse" Option "Device" "/dev/input/mice" Option "SendCoreEvents" "true" Option "Protocol" "IMPS/2" Option "ZAxisMapping" "4 5" Option "Buttons" "5" EndSection # Auto-generated by KNOPPIX mkxf86config Section "Monitor" Identifier "Monitor0" Option "DPMS" "true" VendorName "SAM" ModelName "SAM0254" HorizSync 30 - 81 # DDC-probed VertRefresh 56 - 75 # DDC-probed # These are the DDC-probed settings reported by your monitor. # 1280x1024, 75.0Hz; hfreq=79.98, vfreq=75.03 ModeLine "1280x1024" 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync # 1152x864, 75.0Hz; hfreq=67.50, vfreq=75.00 ModeLine "1152x864" 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync # 1024x768, 75.0Hz; hfreq=60.02, vfreq=75.03 ModeLine "1024x768" 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync # 1024x768, 70.0Hz; hfreq=56.48, vfreq=70.07 ModeLine "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync # 800x600, 75.0Hz; hfreq=46.88, vfreq=75.00 ModeLine "800x600" 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync # 800x600, 72.0Hz; hfreq=48.08, vfreq=72.19 ModeLine "800x600" 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync # 800x600, 60.0Hz; hfreq=37.88, vfreq=60.32 ModeLine "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync # 640x480, 75.0Hz; hfreq=37.50, vfreq=75.00 ModeLine "640x480" 31.50 640 656 720 840 480 481 484 500 -hsync -vsync # 640x480, 72.0Hz; hfreq=37.86, vfreq=72.81 ModeLine "640x480" 31.50 640 656 696 816 480 481 484 504 -hsync -vsync # 640x480, 60.0Hz; hfreq=31.47, vfreq=59.94 ModeLine "640x480" 25.17 640 648 744 784 480 482 484 509 -hsync -vsync # Extended modelines with GTF timings # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz ModeLine "640x480" 43.16 640 680 744 848 480 481 484 509 -HSync +Vsync # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz ModeLine "768x576" 34.96 768 792 872 976 576 577 580 597 -HSync +Vsync # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz ModeLine "768x576" 42.93 768 800 880 992 576 577 580 601 -HSync +Vsync # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz ModeLine "768x576" 45.51 768 808 888 1008 576 577 580 602 -HSync +Vsync # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz ModeLine "768x576" 51.84 768 808 888 1008 576 577 580 605 -HSync +Vsync # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz ModeLine "768x576" 62.57 768 816 896 1024 576 577 580 611 -HSync +Vsync # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz ModeLine "800x600" 68.18 800 848 936 1072 600 601 604 636 -HSync +Vsync # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz ModeLine "1152x864" 81.62 1152 1216 1336 1520 864 865 868 895 -HSync +Vsync # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz ModeLine "1152x864" 119.65 1152 1224 1352 1552 864 865 868 907 -HSync +Vsync # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz ModeLine "1152x864" 143.47 1152 1232 1360 1568 864 865 868 915 -HSync +Vsync # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz ModeLine "1280x960" 124.54 1280 1368 1504 1728 960 961 964 1001 -HSync +Vsync # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz ModeLine "1280x960" 129.86 1280 1368 1504 1728 960 961 964 1002 -HSync +Vsync # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz ModeLine "1280x960" 178.99 1280 1376 1520 1760 960 961 964 1017 -HSync +Vsync # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz ModeLine "1280x1024" 190.96 1280 1376 1520 1760 1024 1025 1028 1085 -HSync +Vsync # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz ModeLine "1400x1050" 122.61 1400 1488 1640 1880 1050 1051 1054 1087 -HSync +Vsync # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz ModeLine "1400x1050" 149.34 1400 1496 1648 1896 1050 1051 1054 1094 -HSync +Vsync # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz ModeLine "1400x1050" 155.85 1400 1496 1648 1896 1050 1051 1054 1096 -HSync +Vsync # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz ModeLine "1400x1050" 179.26 1400 1504 1656 1912 1050 1051 1054 1103 -HSync +Vsync # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz ModeLine "1400x1050" 214.39 1400 1512 1664 1928 1050 1051 1054 1112 -HSync +Vsync # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz ModeLine "1600x1200" 280.64 1600 1728 1904 2208 1200 1201 1204 1271 -HSync +Vsync # 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52; pclk: 193.16 MHz Modeline "1920x1200" 193.16 1920 2048 2256 2592 1200 1201 1204 1242 -HSync +HSync EndSection Section "Device" ### Available Driver options are:- # sw_cursor is needed for some ati and radeon cards Option "sw_cursor" #Option "hw_cursor" #Option "NoAccel" #Option "ShowCache" #Option "ShadowFB" #Option "UseFBDev" #Option "Rotate" Identifier "Card0" # The following line is auto-generated by KNOPPIX mkxf86config Driver "ati" VendorName "All" BoardName "All" # BusID "PCI:1:0:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultColorDepth 16 SubSection "Display" Depth 1 Modes "1024x768" EndSubSection SubSection "Display" Depth 4 Modes "1024x768" EndSubSection SubSection "Display" Depth 8 Modes "1024x768" EndSubSection SubSection "Display" Depth 15 EndSubSection SubSection "Display" Depth 16 Modes "1024x768" EndSubSection SubSection "Display" Depth 24 Modes "1024x768" EndSubSection SubSection "Display" Depth 32 Modes "1024x768" EndSubSection EndSection Section "DRI" Mode 0666 EndSection xorg.conf.projector Code: #Projector xorg.conf
Section "ServerLayout" Identifier "XFree86 Configured" Screen 0 "Screen0" 0 0 InputDevice "Keyboard0" "CoreKeyboard" # PS/2 Mouse not detected # Serial Mouse not detected InputDevice "USB Mouse" "CorePointer" EndSection Section "ServerFlags" Option "AllowMouseOpenFail" "true" EndSection Section "Files" RgbPath "/usr/share/X11/rgb" ModulePath "/usr/lib/xorg/modules" FontPath "/usr/share/fonts/X11/misc:unscaled" FontPath "/usr/share/fonts/X11/75dpi:unscaled" FontPath "/usr/share/fonts/X11/100dpi:unscaled" FontPath "/usr/share/fonts/X11/Type1" FontPath "/usr/share/fonts/X11/Speedo" FontPath "/usr/share/fonts/X11/PEX" # Additional fonts: Locale, Gimp, TTF... FontPath "/usr/share/fonts/X11/cyrillic" # FontPath "/usr/share/fonts/X11/latin2/75dpi" # FontPath "/usr/share/fonts/X11/latin2/100dpi" # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig! FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" FontPath "/usr/share/fonts/truetype" FontPath "/usr/share/fonts/latex-ttf-fonts" EndSection Section "Module" # Comments: see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=346408 Load "dbe" # Double Buffering Extension, very important. Load "dri" # This shouldn't be available choice if user has selected driver vga, vesa or nv. Load "glx" # GLX Extension. Load "freetype" # Freetype fonts. Load "type1" # Type 1 fonts Load "record" # Developer extension, usually not needed # Load "extmod" # This is okay, but if you look into "man xorg.conf" you'll find option NOT to include DGA extension with extmod, and for a good reason.. DGA causes instability as it access videoram without consulting X about it. SubSection "extmod" Option "omit xfree86-dga" EndSubSection # Load "speedo" # Speedo fonts, this module doesn't exist in Xorg 7.0.17 # The following are deprecated/unstable/unneeded in Xorg 7.0 # Load "ddc" # ddc probing of monitor, this should be never present, as it gets automatically loaded. # Load "GLcore" # This should be never present, as it gets automatically loaded. # Load "bitmap" # Should be never present, as it gets automatically loaded. This is a font module, and loading it in xorg.conf makes X try to load it twice. EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "us" EndSection Section "InputDevice" Identifier "Serial Mouse" Driver "mouse" Option "Protocol" "Microsoft" Option "Device" "/dev/ttyS0" Option "Emulate3Buttons" "true" Option "Emulate3Timeout" "70" Option "SendCoreEvents" "true" EndSection Section "InputDevice" Identifier "PS/2 Mouse" Driver "mouse" Option "Protocol" "auto" Option "ZAxisMapping" "4 5" Option "Device" "/dev/psaux" Option "Emulate3Buttons" "true" Option "Emulate3Timeout" "70" Option "SendCoreEvents" "true" EndSection Section "InputDevice" Identifier "USB Mouse" Driver "mouse" Option "Device" "/dev/input/mice" Option "SendCoreEvents" "true" Option "Protocol" "IMPS/2" Option "ZAxisMapping" "4 5" Option "Buttons" "5" EndSection # Auto-generated by KNOPPIX mkxf86config Section "Monitor" Identifier "Monitor0" Option "DPMS" "true" VendorName "SAM" ModelName "SAM0254" HorizSync 30 - 81 # DDC-probed VertRefresh 56 - 75 # DDC-probed # These are the DDC-probed settings reported by your monitor. # 1280x1024, 75.0Hz; hfreq=79.98, vfreq=75.03 ModeLine "1280x1024" 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync # 1152x864, 75.0Hz; hfreq=67.50, vfreq=75.00 ModeLine "1152x864" 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync # 1024x768, 75.0Hz; hfreq=60.02, vfreq=75.03 ModeLine "1024x768" 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync # 1024x768, 70.0Hz; hfreq=56.48, vfreq=70.07 ModeLine "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync # 800x600, 75.0Hz; hfreq=46.88, vfreq=75.00 ModeLine "800x600" 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync # 800x600, 72.0Hz; hfreq=48.08, vfreq=72.19 ModeLine "800x600" 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync # 800x600, 60.0Hz; hfreq=37.88, vfreq=60.32 ModeLine "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync # 640x480, 75.0Hz; hfreq=37.50, vfreq=75.00 ModeLine "640x480" 31.50 640 656 720 840 480 481 484 500 -hsync -vsync # 640x480, 72.0Hz; hfreq=37.86, vfreq=72.81 ModeLine "640x480" 31.50 640 656 696 816 480 481 484 504 -hsync -vsync # 640x480, 60.0Hz; hfreq=31.47, vfreq=59.94 ModeLine "640x480" 25.17 640 648 744 784 480 482 484 509 -hsync -vsync # Extended modelines with GTF timings # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz ModeLine "640x480" 43.16 640 680 744 848 480 481 484 509 -HSync +Vsync # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz ModeLine "768x576" 34.96 768 792 872 976 576 577 580 597 -HSync +Vsync # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz ModeLine "768x576" 42.93 768 800 880 992 576 577 580 601 -HSync +Vsync # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz ModeLine "768x576" 45.51 768 808 888 1008 576 577 580 602 -HSync +Vsync # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz ModeLine "768x576" 51.84 768 808 888 1008 576 577 580 605 -HSync +Vsync # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz ModeLine "768x576" 62.57 768 816 896 1024 576 577 580 611 -HSync +Vsync # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz ModeLine "800x600" 68.18 800 848 936 1072 600 601 604 636 -HSync +Vsync # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz ModeLine "1152x864" 81.62 1152 1216 1336 1520 864 865 868 895 -HSync +Vsync # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz ModeLine "1152x864" 119.65 1152 1224 1352 1552 864 865 868 907 -HSync +Vsync # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz ModeLine "1152x864" 143.47 1152 1232 1360 1568 864 865 868 915 -HSync +Vsync # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz ModeLine "1280x960" 124.54 1280 1368 1504 1728 960 961 964 1001 -HSync +Vsync # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz ModeLine "1280x960" 129.86 1280 1368 1504 1728 960 961 964 1002 -HSync +Vsync # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz ModeLine "1280x960" 178.99 1280 1376 1520 1760 960 961 964 1017 -HSync +Vsync # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz ModeLine "1280x1024" 190.96 1280 1376 1520 1760 1024 1025 1028 1085 -HSync +Vsync # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz ModeLine "1400x1050" 122.61 1400 1488 1640 1880 1050 1051 1054 1087 -HSync +Vsync # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz ModeLine "1400x1050" 149.34 1400 1496 1648 1896 1050 1051 1054 1094 -HSync +Vsync # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz ModeLine "1400x1050" 155.85 1400 1496 1648 1896 1050 1051 1054 1096 -HSync +Vsync # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz ModeLine "1400x1050" 179.26 1400 1504 1656 1912 1050 1051 1054 1103 -HSync +Vsync # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz ModeLine "1400x1050" 214.39 1400 1512 1664 1928 1050 1051 1054 1112 -HSync +Vsync # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz ModeLine "1600x1200" 280.64 1600 1728 1904 2208 1200 1201 1204 1271 -HSync +Vsync # 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52; pclk: 193.16 MHz Modeline "1920x1200" 193.16 1920 2048 2256 2592 1200 1201 1204 1242 -HSync +HSync EndSection Section "Device" ### Available Driver options are:- # sw_cursor is needed for some ati and radeon cards Option "sw_cursor" #Option "hw_cursor" #Option "NoAccel" #Option "ShowCache" #Option "ShadowFB" #Option "UseFBDev" #Option "Rotate" Identifier "Card0" # The following line is auto-generated by KNOPPIX mkxf86config Driver "ati" VendorName "All" BoardName "All" # BusID "PCI:1:0:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultColorDepth 16 SubSection "Display" Depth 1 Modes "1024x768" EndSubSection SubSection "Display" Depth 4 Modes "1024x768" EndSubSection SubSection "Display" Depth 8 Modes "1024x768" EndSubSection SubSection "Display" Depth 15 EndSubSection SubSection "Display" Depth 16 Modes "1024x768" EndSubSection SubSection "Display" Depth 24 Modes "1024x768" EndSubSection SubSection "Display" Depth 32 Modes "1024x768" EndSubSection EndSection Section "DRI" Mode 0666 EndSection Sorry for giant post, I thought it might help ![]() |
Page 1 of 2 | All times are UTC - 6 hours |
Powered by phpBB® Forum Software © phpBB Group http://www.phpbb.com/ |