QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1907|回复: 0

How To Setup Dual Monitors With XRandR ZT

[复制链接]
发表于 2009-7-22 14:51:51 | 显示全部楼层 |阅读模式
xrandr-screens-scaled

Dual monitor setup in Linux has never been easier. While methods such as the xinerama extension sometimes drive people insane, using RandR (Resize and Rotate) is quick and painless. This will allow you to use both monitors as one big screen instead of two identical ones (cloning). Follow these simple steps to get started.

Note: This HOWTO assumes that you are using the opensource drivers for your video card (ATI or Intel). Nvidia and AMD proprietary drivers come with their dual screen components.

1. Setup your xorg.conf configuration file:

Edit it as root:

gksudo gedit /etc/X11/xorg.conf

(in GNOME) or

kdesudo kate /etc/X11/xorg.conf

(in KDE)

2. Create a subsection under the “Screen” section with the following.

SubSection "Display"
Depth 24
Modes "1440x900" "1440x900" #the resolutions of your monitors
Virtual 2880 800
EndSubSection

Xrandr will function without these xorg.conf lines, but it will limit the size of your desktop.

For my computer, I am using two monitors with 1440×900 resolution. If you have a different resolution, put those resolutions under “modes” and then combine the width of both for “virtual”. In other words, if you have a 1280×800 monitor, it would be “Virtual 2560 800″.

3. Save your changes, exit and restart X.

4. Now, you can setup your dual screens however you like. First find out some information about the screens. Open a terminal emulator and type:

xrandr -q

It should tell you the name of each screen and its current resolution. On my computer, my screens are “DVI-0″ and “DVI-1″.

5. To make one large desktop including both screens, run this command:

xrandr --auto --output DVI-0 --mode 1440x900 --right-of DVI-1

DVI-0 is on the right, and DVI-1 is on the left.

6. Create a script called “startxrandr” to run this command whenever you want.

#!/bin/sh
xrandr --auto --output DVI-0 --mode 1440x900 --right-of DVI-1

7. Make sure to make the script executable

chmod a+x startxrandr

That is all it takes. You can play around with it and see all of xrandr’s commands by running “xrandr -help”.

Notes:

There are also a few GUI applications that allow you to control xrandr.  Check with your Linux distribution.

You can set xrandr to run when your display manager or desktop environment starts. See the its documentation for startup applications.

KDE and GNOME will automatically configure two screens correctly so that maximizing a window will only fill one of the screens. Some desktop environments do not yet have support for this. You will have to test the one you use. You should have no problems with Compiz.

You can have two monitors with different resolutions, which is useful if you are using a laptop connected to a larger monitor.

In KDE, each screen will automatically be a different activity, and you can apply different widgets on each.

Some applications, especially those that rely on SDL (like many Linux games), may not honor your xrandr settings. If you are lucky, it will just clone the game on both screens. For applications like Boxee, you will need to set the environment variable before starting it:

export SDL_VIDEO_FULLSCREEN_HEAD=1
您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-4-23 16:21 , Processed in 0.086155 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表