[SOLVED] Dual monitor: can't switch from X to vc

I have  a dual monitor configuration on my laptop (Sony Vaio VGN-SR21M), so that I can work with the laptop screen and an external lcd at the same time. It works amazingly well, every screen has its own resolution and I can drag windows from one screen to another (ATI drivers are wonderful in this aspect!). The only problem is that I can't switch to vc pressing Ctrl+Alt+F2 or any other function key: the laptop screen freezes black, while the other shows "no input" box. Pressing Alt+F7 the X interface is restored correctly to both screens. If I start X without the external lcd  the problem disappears, so I think it is a multimonitor issue. Here's my xorg.conf:
Section "ServerLayout"
#InputDevice "Mouse0" "CorePointer"
Identifier "X.org Configured"
Screen 0 "aticonfig-Screen[0]-0" 0 0
Screen "aticonfig-Screen[0]-1" RightOf "aticonfig-Screen[0]-0"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "xtrap"
Load "glx"
Load "dri"
Load "freetype"
Load "synaptics"
EndSection
Section "ServerFlags"
Option "AutoAddDevices" "False"
Option "Xinerama" "on"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbLayout" "it"
Option "XkbVariant" ""
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-1"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "Card0"
Driver "radeon"
VendorName "ATI Technologies Inc"
BoardName "Mobility Radeon HD 3400 Series"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
Option "PairModes" ""
Option "DesktopSetup" "clone"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-1"
Driver "fglrx"
BusID "PCI:1:0:0"
Screen 1
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-1"
Device "aticonfig-Device[0]-1"
Monitor "aticonfig-Monitor[0]-1"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Maybe the solution is simple, but I'm quite a newbie so please understand me...
Last edited by snack (2009-01-27 15:42:35)

I modified xorg.conf heavily to solve another problem, with this new version I can switch to vc even with dual monitor setup (obviously the external lcd doesn't work) and then go back to X without any issue:
Section "InputDevice"
Identifier "SynapticsTouchpad"
Driver "synaptics"
Option "AlwaysCore" "true" # send events to CorePointer
#Option "Device" "/dev/input/mice"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "SHMConfig" "false" # configurable at runtime? security risk
Option "LeftEdge" "1700" # x coord left
Option "RightEdge" "5300" # x coord right
Option "TopEdge" "1700" # y coord top
Option "BottomEdge" "4200" # y coord bottom
Option "FingerLow" "25" # pressure below this level triggers release
Option "FingerHigh" "30" # pressure above this level triggers touch
Option "MaxTapTime" "180" # max time in ms for detecting tap
Option "VertEdgeScroll" "true" # enable vertical scroll zone
Option "HorizEdgeScroll" "true" # enable horizontal scroll zone
Option "CornerCoasting" "true" # enable continuous scroll with finger in corner
Option "CoastingSpeed" "0.30" # corner coasting speed
Option "VertScrollDelta" "15" # edge-to-edge scroll distance of the vertical scroll
Option "HorizScrollDelta" "15" # edge-to-edge scroll distance of the horizontal scroll
Option "MinSpeed" "0.15" # speed factor for low pointer movement
Option "MaxSpeed" "0.75" # maximum speed factor for fast pointer movement
Option "AccelFactor" "0.0030" # acceleration factor for normal pointer movements
Option "VertTwoFingerScroll" "true" # vertical scroll anywhere with two fingers
Option "HorizTwoFingerScroll" "true" # horizontal scroll anywhere with two fingers
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
EndSection
#Section "InputDevice"
# Identifier "Keyboard0"
# Driver "kbd"
# Option "XkbLayout" "it"
# Option "XkbVariant" ""
#EndSection
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "aticonfig-Screen[0]-0" 0 0
Screen "aticonfig-Screen[0]-1" RightOf "aticonfig-Screen[0]-0"
InputDevice "SynapticsTouchpad" "SendCoreEvents"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "xtrap"
Load "glx"
Load "dri"
Load "freetype"
#Load "synaptics"
EndSection
Section "ServerFlags"
Option "AutoAddDevices" "False"
Option "Xinerama" "on"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-1"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
Option "PairModes" ""
Option "SwapScreens" "off"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-1"
Driver "fglrx"
BusID "PCI:1:0:0"
Screen 1
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-1"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-1"
Device "aticonfig-Device[0]-1"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
I think it has something to do with the Screen sections, but I don't know exactly where the problem was (I changed many settings at once). Hope my new xorg.conf could be useful to someone with the same problem. Thanks everybody for the help.

Similar Messages

  • How can I switch from auto_login wallet to password-protected encryption wallet in 12c  ?

    How can I switch from auto_login wallet to password-protected encryption wallet in 12c
    --Now the autologin wallet is in effect
    SQL> select * from v$encryption_wallet
      2  ;
    WRL_TYPE
    WRL_PARAMETER
    STATUS       WALLET_TYPE    WALLET_OR FULLY_BAC
        CON_ID
    FILE
    /acfs3/wallet
    OPEN       AUTOLOGIN    SINGLE    NO
      0
    --I need to export the keys and it informs me to use password-based keystore
    SQL> ADMINISTER KEY MANAGEMENT export KEYS with secret tde_1234 to '/home/oracle/dumpdir/orapdba.wallet' IDENTIFIED BY "tde_1234";
    ADMINISTER KEY MANAGEMENT export KEYS with secret tde_1234 to '/home/oracle/dumpdir/orapdba.wallet' IDENTIFIED BY "tde_1234"
    ERROR at line 1:
    ORA-28417: password-based keystore is not open
    --So I try to close the autologin keystore and open the password-based keystore, but the autologin keystore cannot be closed
    SQL>  administer key management set keystore close;
    administer key management set keystore close
    ERROR at line 1:
    ORA-28365: wallet is not open
    SQL> administer key management set keystore open identified by "tde_1234";
    administer key management set keystore open identified by "tde_1234"
    ERROR at line 1:
    ORA-28354: Encryption wallet, auto login wallet, or HSM is already open
    So My question is
    How to switch from auto_login keystore to password-protected keystore ?

    Remove the cwallet.sso file and check the wallet status in v$encryption_wallet.
    If it is not opened, try to open it with administer key statement.
    Check the status again.

  • HT201320 How can I switch from one email user to another?

    How can I switch from one email account to another?

    You have to select between the two accounts in the mail app.
    Say for instance that you are reading an email in your XYZ email account. Tap the button in the upper left corner of the mail app to back out all the way to where you can see all of the email accounts.... Tap InBox, then tap XYZ email Account and that will take you back to the main MailBoxes window.
    Is that what you want to know? There is no way to simply "toggle" between the two accounts.

  • Can not switch from organizer mode to editor mode in adobe premiere elements 12.

    After successfully installing and registering my new adobe premiere elements 12 and had created the organizer, I still can't switch from organizer mode to editor mode to edit a file (photo).

    Alfredo Agorilla
    What computer operating system is your Premiere Elements 12 running on? Have you updated 12 to 12.1 Update via a project's Help Menu/Update? If not, please do so.
    You wrote
    I still can't switch from organizer mode to editor mode to edit a file (photo).
    Just how are you trying to do that...
    a. Are you in the Elements Organizer 12 workspace, right clicking the photo's thumbnail, and selecting Edit with Premiere Elements Editor
    or
    b. Something else.
    Is there an error message that results when you try to switch "from organizer mode to editor mode" and cannot?
    When you mention "....to edit a file (photo)", I wonder if you are not trying to get to Photoshop Elements 12 Editor, not Premiere Elements 12 Editor, from the Elements Organizer 12.
    Please supply a step by step of what you are doing so that we can be sure that we are in sync on the details that we are using to work through your issue.
    Thank you.
    ATR

  • Can I switch from a student CC subscription to the Photo program?

    I am currently in a $19.99/mo student plan for the entire suite, but the price will be going up - and honestly all I truly need is PhotoShop. Can I switch from my current (or what will be renewed) subcription (ends in 22 days) to the $10/mo photoshop plan? How can I do so?

    http://forums.adobe.com/community/download_install_setup/creative_cloud_faq
    --has a link to manage your membership
    Also see reply #4 in http://forums.adobe.com/thread/1403684?tstart=0

  • With different dual monitors can you choose which image to print

    I have dual monitors which I calibrate but they still look different. I have lightroom on the main screen with a full loupe view on monitor 2, I would like to print this image (on monitor 2 ) as its easier to see the changes during develop because its bigger. Is this possible or does lightroom only print the image either on the main screen or in the main lightroom module

    You are only previewing through the monitor profile. It does nothing else in the chain to Print. There's no conversion done between monitor profiles and printer profile, just Lightroom's internal working profile and the printer profile. Photoshop converts between the working profile and the printer profile, again the monitor profile is only applied to what you see on the screen. The actual process of colour matching can never be 100% exact, but can get close under ideal viewing conditions. The screen emits light, whereas the print must be lit, and takes on the colour of the light in the environment. High end printers will viewing stations with with which to determine print accuracy.. a luxury most of us won't.
    In more simpler terms, make the print. Compare it to the monitors under good daylight and gauge from there which is closest to the print.

  • [SOLVED] Dual monitor acting weird on Fluxbox after system upgrade

    Hello.
    I'm using Fluxbox on Xorg. I have two monitors and for more than one year my setup has been this in ~/.xinitrc:
    #!/bin/sh
    if [ -d /etc/X11/xinit/xinitrc.d ]; then
    for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    xrandr --output DVI-0 --mode 1920x1080 --pos 0x0 --output DVI-1 --mode 1680x1050 --pos 1920x0
    exec startfluxbox
    Now, I just upgraded my packages (fluxbox and some xorg-* packages were upgraded, like xorg-server, as well as xf86-video-ati) and, although the dual monitor setup works, it seems like each monitor is not recognized individually. My Fluxbox toolbar spans on both monitors horizontally (whereas it used to reside on the left one) and when I maximize a window, it's maximized on both monitors (whereas it used to be maximized on one monitor only, the closest).
    Before reverting the upgrade, anybody knows why this is happening?
    Thanks,
    Phil
    Last edited by eepp (2014-07-07 00:55:04)

    Yup, I can confirm that. It's the fluxbox package.
    I've enabled logging. Here's the full log of 1.3.5-3:
    Log File: /tmp/fluxlog
    Fluxbox version: 1.3.5
    GIT Revision: this_is_tar_ball_build
    Compiled: Jul 4 2014 20:54:40
    Compiler: GCC
    Compiler version: 4.9.0 20140604 (prerelease)
    Defaults:
    menu: /usr/share/fluxbox/menu
    style: /usr/share/fluxbox/styles/bloe
    keys: /usr/share/fluxbox/keys
    init: /usr/share/fluxbox/init
    nls: /usr/share/fluxbox/nls
    Compiled options (- => disabled):
    -BIDI
    -DEBUG
    EWMH
    IMLIB2
    NLS
    REMEMBER
    RENDER
    -SHAPE
    SLIT
    SYSTEMTRAY
    TOOLBAR
    -RANDR
    XFT
    -XINERAMA
    XMB
    XPM
    Notice the -RANDR  and -XINERAMA lines? I bet that is what's causing this.
    For completeness here is the log from 1.3.5-2:
    Log File: /tmp/fluxlog
    Fluxbox version: 1.3.5
    GIT Revision: this_is_tar_ball_build
    Compiled: Apr 4 2013 00:27:22
    Compiler: GCC
    Compiler version: 4.8.0
    Defaults:
    menu: /usr/share/fluxbox/menu
    style: /usr/share/fluxbox/styles/bloe
    keys: /usr/share/fluxbox/keys
    init: /usr/share/fluxbox/init
    nls: /usr/share/fluxbox/nls
    Compiled options (- => disabled):
    BIDI
    -DEBUG
    EWMH
    IMLIB2
    NLS
    REMEMBER
    RENDER
    SHAPE
    SLIT
    SYSTEMTRAY
    TOOLBAR
    RANDR1.2
    XFT
    XINERAMA
    XMB
    XPM
    I need to run now, but I'd say a bug report would indeed be appropriate here. If nobody gets to that earlier I'll see if I can submit one tonight.
    Thanks guys.

  • [SOLVED] Dual monitors and raid - linux newb

    Hi
    I'm raginaot and I'll probably be asking a lot of dumb questions here in the near future
    I just decided to say goodbye to windows for a while. Been wasting too much time gaming and it was either - switch to linux or - sell my computer and move to the desert. I'm gonna try the former first and see how it goes.
    I managed to install arch and get gnome up and running with the help of the most awesome linux install guide I have ever seen and I installed the xf86-video-ati driver package but I'm having trouble getting it to recognise my 2 monitors.
    I'll list my hardware specs before I go any further:
    CPU: i7 920
    RAM: 12GB (3x4) Mushkin Silverline 1333MHz
    Motherboard: Gigabyte EX58-UD3R (rev 1.6)
    GPU: ATI HD5870 1GB
    Souncard: Auzentech X-fi forte
    Monitors: Samsung 2693HM and Samsung 226BW
    now the monitors seem to be stuck in mirrored mode, both showing the same image at 1280*1024 resolution
    when I try to set them both to on and their native resolutions (1920*1200 and 1680*1050) in the display settings I get a message that says:
    "the selected configuration for displays could not be applied
    required virtual size does not fit available size: requested=(3600, 1200), minimum=(320, 200), maximum=(1920, 1920"
    But when I unplug the 22" display, I can set the 26" to native res just fine and vice versa.
    Now to the second issue...
    I have 2 1TB drives in raid0, but in fdisk -l they appear as 2 seperate 1TB drives instead of 1 big 2TB like they're supposed to (see output below).
    I guess I have to mount them in some special way, but I have no idea how. The raid worked right away in linux mint.
    fdisk wrote:
    Disk /dev/sdb: 1000.2 GB, 1000203804160 bytes
    255 heads, 63 sectors/track, 121601 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x1c7fba32
       Device Boot      Start         End      Blocks   Id  System
    /dev/sdb1   *           1          13      102400    7  HPFS/NTFS
    Partition 1 does not end on cylinder boundary.
    /dev/sdb2              13       34421   276377600    7  HPFS/NTFS
    /dev/sdb3           34421      243202  1677035520    7  HPFS/NTFS
    Disk /dev/sdc: 1000.2 GB, 1000204886016 bytes
    255 heads, 63 sectors/track, 121601 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0xb876c595
    Disk /dev/sdc doesn't contain a valid partition table
    Thanks in advance.
    Last edited by raginaot (2010-11-24 03:29:46)

    Bregol wrote:
    Glad you were able to figure out the RAID part - I can't really help you with that.  As far as the dual monitor setup, I would suspect that you will need to do some stuff with the xorg config to get it working.  I would say that xorg.log would be the first thing to look at - to see what is limiting the modes available to X.  Maybe post the xorg.log and your x configuration
    My post in this thread might give a bit of background on how X comes up with what resolutions it lets you choose.
    https://bbs.archlinux.org/viewtopic.php?id=101547
    thanks
    I pasted the xorg logs here: Xorg log 0: http://pastebin.com/tHPqWVaw and Xorg log 1: http://pastebin.com/nPhdpCE0
    and here is the xorg.conf in /etc/X11 (hope that's the right file..)
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    FontPath "/usr/share/fonts/OTF/"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    EndSection
    Section "Module"
    Load "record"
    Load "glx"
    Load "extmod"
    Load "dri"
    Load "dri2"
    Load "dbe"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    #DisplaySize 470 300 # mm
    Identifier "Monitor0"
    VendorName "SAM"
    ModelName "SyncMaster"
    HorizSync 30.0 - 81.0
    VertRefresh 56.0 - 75.0
    Option "DPMS"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "Dac6Bit" # [<bool>]
    #Option "Dac8Bit" # [<bool>]
    #Option "BusType" # [<str>]
    #Option "CPPIOMode" # [<bool>]
    #Option "CPusecTimeout" # <i>
    #Option "AGPMode" # <i>
    #Option "AGPFastWrite" # [<bool>]
    #Option "AGPSize" # <i>
    #Option "GARTSize" # <i>
    #Option "RingSize" # <i>
    #Option "BufferSize" # <i>
    #Option "EnableDepthMoves" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "NoBackBuffer" # [<bool>]
    #Option "DMAForXv" # [<bool>]
    #Option "FBTexPercent" # <i>
    #Option "DepthBits" # <i>
    #Option "PCIAPERSize" # <i>
    #Option "AccelDFS" # [<bool>]
    #Option "IgnoreEDID" # [<bool>]
    #Option "CustomEDID" # [<str>]
    #Option "DisplayPriority" # [<str>]
    #Option "PanelSize" # [<str>]
    #Option "ForceMinDotClock" # <freq>
    #Option "ColorTiling" # [<bool>]
    #Option "VideoKey" # <i>
    #Option "RageTheatreCrystal" # <i>
    #Option "RageTheatreTunerPort" # <i>
    #Option "RageTheatreCompositePort" # <i>
    #Option "RageTheatreSVideoPort" # <i>
    #Option "TunerType" # <i>
    #Option "RageTheatreMicrocPath" # <str>
    #Option "RageTheatreMicrocType" # <str>
    #Option "ScalerWidth" # <i>
    #Option "RenderAccel" # [<bool>]
    #Option "SubPixelOrder" # [<str>]
    #Option "ClockGating" # [<bool>]
    #Option "VGAAccess" # [<bool>]
    #Option "ReverseDDC" # [<bool>]
    #Option "LVDSProbePLL" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "DRI" # [<bool>]
    #Option "ConnectorTable" # <str>
    #Option "DefaultConnectorTable" # [<bool>]
    #Option "DefaultTMDSPLL" # [<bool>]
    #Option "TVDACLoadDetect" # [<bool>]
    #Option "ForceTVOut" # [<bool>]
    #Option "TVStandard" # <str>
    #Option "IgnoreLidStatus" # [<bool>]
    #Option "DefaultTVDACAdj" # [<bool>]
    #Option "Int10" # [<bool>]
    #Option "EXAVSync" # [<bool>]
    #Option "ATOMTVOut" # [<bool>]
    #Option "R4xxATOM" # [<bool>]
    #Option "ForceLowPowerMode" # [<bool>]
    #Option "DynamicPM" # [<bool>]
    #Option "NewPLL" # [<bool>]
    #Option "ZaphodHeads" # <str>
    Identifier "Card0"
    Driver "radeon"
    BusID "PCI:3:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Not sure what to look for here...
    The "#DisplaySize      470   300" line looks like something.
    I only have the 26" screen plugged in at the moment, if that matters. Does the xorg log change it self when I plug in another screen?

  • If you do have two gmail email, how can you switch from one gmail to another?

    I do have to gmail account and i dont know how i can set up both of them on my iphone at the same time. How to switch from one email to another?

    You can add as many e-mail accounts as you want. Go to Settings>Mail, Contacts,Calendars to add them.
    When in the mail app,you can have all inboxes displayed together (unified inbox) or you can tap the "Mailboxes" arrow in the upper left and select which one you want.

  • Dual monitor setup experiences noise from sleep wake

    I have a second monitor hooked up to my 27" iMac and it will experience noise when I wake my computer up from sleep periodically. I have reformatted my computer twice now for other reasons, but the problem still continues. I have to turn my second monitor off and then turn it back on again and it will work great. It is just really annoying to wake my computer from sleep and only one monitor is running, but the computer still thinks the other monitor is connected, windows that were still running are still on the other display till a turn off the second display or click gather windows from the display setting in OS X.
    The noise on the second monitor looks like an old tv when you are not on a channel that has reception. Its like a bunch of black and white dots flashing around. We used to call them ants in the tv when I was younger.
    Any help out there?

    Jared Blake:
    I have the same problem, I think.
    I used an external monitor with my previous iMac, no problem. In the past month or so I bought a new quad-core 27 inch iMac, and moved the external display to the new machine. Everything works normally, except that when I wake up the system, the external ViewSonic display is filled with "snow". Cycling power on the external monitor always restores it to correct operation.
    The "snow" pattern looks very much like the old days of analog TV, before empty-channel "blanking" was developed and added. In essence, the TV was displaying random information.
    This is the only case I can recall of seeing "snow" on a modern (i.e. digital monitor.) As far as I know modern monitors can detect that no valid signal is coming in, and in such cases, they display a blank screen and possibly a message saying something like, "no signal".
    So, I'm guessing that our iMacs for some reason are not detecting the second display on wake-up and are not sending any signal to it.
    It's strange that the monitor's themselves don't react better to this situation.
    hen3ry

  • How can i switch from double touch screen to regular touch?

    how to switch from double touch to sigle touch? cos i touch voiceover, now i cant move the screen...

    What menu? Scroll down where?  Nobody here can help you if you don't provide any details about the problems you're having.

  • Can you switch from a mobile site to a full site through iOS not the website??

    Hi,
    Is there a way to switch from a mobile website to a full site through iOS not the website becase the particular MOBILE website I am on does not offer the option to switch to full website??
    Thankyou.
    Kind Regards

    Not with Safari. There are some browsers available from the App store that have that feature. I think iCab is one.

  • Can I switch from the full creative cloud package to just photoshop and illustrator.

    I bought the full creative cloud package for my girlfriend as a Christmas present, but she only uses photoshop and illustrator. Can I switch plans?
    gareth

    Cancel the full plan and buy the photography package and a single subscription to illustrator
    DO contact Adobe so you don't have to pay a cancellation fee
    This is an open forum, not Adobe support... you need Adobe support
    Adobe contact information - http://helpx.adobe.com/contact.html may help
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • Can't Switch From AOL To Apple Account

    In preparation for a new phone on June 29th, I'm trying to switch from AOL account to Apple account. I want to be able to migrate all my TV show purchases to my new phone.
    I enter the incorrect AOL password a few times, then iTunes lets me enter account information to change the account. It looks like it gets hung up on the final (or nearly final) step, where iTunes asks what county I live in for tax purposes. I choose my county, click on "Done", then the following red text appears... "We are currently experiencing technical difficulties. Please try again later."
    Well, I've tried this again "later", entering the text several d*mn times (I'm getting VERY frustrated at this stage) over the past several days! I need to get this resolved immediately!
    Help!
    MA611LLA   Mac OS X (10.4.10)  

    In preparation for a new phone on June 29th, I'm trying to switch from AOL account to Apple account. I want to be able to migrate all my TV show purchases to my new phone.
    I enter the incorrect AOL password a few times, then iTunes lets me enter account information to change the account. It looks like it gets hung up on the final (or nearly final) step, where iTunes asks what county I live in for tax purposes. I choose my county, click on "Done", then the following red text appears... "We are currently experiencing technical difficulties. Please try again later."
    Well, I've tried this again "later", entering the text several d*mn times (I'm getting VERY frustrated at this stage) over the past several days! I need to get this resolved immediately!
    Help!
    MA611LLA   Mac OS X (10.4.10)  

  • [Solved]Dual Monitor Setup

    So, I inherited a new monitor from my friend just a couple days ago and had a go at setting it up. Here's my current setup, to illustrate:
    -- MOD EDIT -- Please follow image posting rules
    The one on the right is mirroring the left at the moment, which happened via default when I booted up. I have the monitor to the left plugged via a dvi cable, and the one to the right that is rotated (for the purpose of better viewing webpages) with plain old vga. Both are running off my only graphics card, a Radeon X300:
    $ lspci | grep VGA
    01:00.0 VGA compatible controller: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)]
    Here is the compatible resolutions and refresh rates and such for each:
    $ xrandr
    Screen 0: minimum 320 x 200, current 1280 x 1024, maximum 4096 x 4096
    VGA-0 connected 1280x1024+0+0 (normal left inverted right x axis y axis) 376mm x 301mm
    1280x1024 60.0*+ 75.0
    1152x864 75.0
    1024x768 75.1 60.0
    800x600 75.0 60.3
    640x480 75.0 60.0
    720x400 70.1
    DVI-0 connected 1280x1024+0+0 (normal left inverted right x axis y axis) 450mm x 280mm
    1680x1050 60.0 +
    1280x1024 75.0 60.0*
    1440x900 75.0 59.9
    1152x864 75.0 70.0 60.0
    1024x768 75.1 70.1 60.0
    832x624 74.6
    800x600 72.2 75.0 60.3 56.2
    640x480 72.8 75.0 66.7 60.0
    720x400 70.1
    S-video disconnected (normal left inverted right x axis y axis)
    So, this information aside, I went and tried to add my second screen and make everything happy, I used the dual screen section in the X.Org Wiki page, which I believe was for the nVidia users, but I couldn't find any direction otherwise, so I figured with a few changes it could work with my radeon just fine. I am on xorg-server 1.9.4.901-1 with openbox as my window manager, no complete DE.
    This is my current /etc/X11/xorg.conf.d/10-monitor.conf written for two monitors, which at the moment does not work, saying no screens found when I run startx:
    Section "ServerLayout"
    Identifier "DualScreen"
    Screen 0 "Screen0"
    Scren 1 "Screen1" RightOf "Screen0" #Screen1 is to the right of Screen0
    Option "Xinerama" "1" #To move windows between screens, set to 1
    EndScetion
    Section "Monitor"
    Identifier "Monitor0"
    Option "Enable" "true"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    Option "Enable" "true"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "radeon"
    Screen 0
    EndSection
    Section "Device"
    Identifier "Device1"
    Driver "radeon"
    Screen 1
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0" #Set to 1 to make both monitors act as one big screen, with no distinction between the two
    SubSection "Display"
    Depth 24
    Modes "1680x1050_60.00"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Device1"
    Monitor" "Monitor1"
    DefaultDepth 24
    Option "TwinView" "0"
    SubSection "Display"
    Depth 24
    Modes 1280x1024_75.00
    EndSubSection
    EndSection
    And here is the same file, in a working configuration:
    Section "Monitor"
    Identifier "Monitor0"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "radeon" #Driver used for this monitor
    EndSection
    Section "Screen"
    Identifier "Screen0" #Collapse Monitor and Device section to Screen section
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24 #Choose the Depth (16 || 24) (24 for true colour)
    Subsection "Display"
    Depth 24
    Modes "1680x1050_75.00" #Choose the resolution
    EndSubSection
    EndSection
    This leaves me with 3 questions I cannot seem to figure out:
    1) What did I do wrong with the non-working xorg config file, giving the error "no screens found"?
    2) Another extra twist of difficulty comes from the rotated monitor on the right.  How should I adopt for that, with resolutions and such?
    3) Xinerama/Twinview  - I am confused which one of these I should choose, what they offer over the other, or should I just not bother at all?
    I would like, in a "perfectly good configuration", windows to be able to move from each monitor to the other, the monitors to be two distinct monitors (ie. they don't mirror each other), a maximized window to only fill up just the one monitor (and not both), and finally, fullscreen programs (like games and such) only fullscreen to the monitor they are on. Is such a configuration possible with all of these parameters?
    -Scott
    Last edited by Inxsible (2011-06-05 18:33:38)

    BurntSushi wrote:
    Your desired configuration is quite common, and indeed, is the default setup provided by Openbox---once the monitors are properly configured, of course :-)
    Anywho, modifying xorg.conf files for something like this is a thing of the past, man. (Incidentally, you have made the lethal mistake of assuming an nvidia config will work with an ATI card. For example, "TwinView" is only available when you are using the nvidia proprietary driver.)
    Judging by your use of "radeon" as your video driver, it looks like you're using xf86-video-ati. Therefore, congratulations, xrandr will rescue you :-) (This should also be the case if you you're using the Catalyst driver.)
    thinkwiki should be enough to get your feet wet. Note: This guide is a bit dated, but 90% of it is still relevant and useful. For example, it claims that you need to modify your xorg.conf to add a Virtual screen size---this is only true if kernel modesetting is disabled. If it's enabled (and it should be if you're using xf86-video-ati), then you're good to go. If you're using Catalyst, you will have had to disable KMS. So you'd either have to add a Virtual screen to use xrandr, or configure your monitor setup with amdcccle.
    Finally, you asked about rotation. I don't think this is anything that `man xrandr` can't answer, and you should be okay as far as support goes---rotation was added in RandR 1.2, which any civilized video driver should support. (Except nvidia blob.)
    Anywho, feel free to come back with more questions if you have any!
    (For terminology sake, this means you will be using neither Xinerama nor TwinView to configure your multi-monitors. You will be using RandR if you use xrandr. Interestingly, your screen setup will still be reported to Openbox via the Xinerama extension. You may be interested in a utility like `lxrandr` if the command line frightens you.)
    Xrandr does the job elegantly, thanks! It's a simple matter of putting the commands I needed in openbox's autostart.sh. Thanks for pointing me in the right direction.
    #xrandr --output DVI-0 1680x1050 --output VGA-0 1280x1024 --right-of DVI-0
    # xrandr --output VGA-0 --rotate left
    Scott

Maybe you are looking for

  • PAGE_NOT_FOUND in UWL

    Hi Experts, I am new to UWL. Currently, I have a View say - Submit Time-off (implement using web dynpro Java) . After the submission, it will route for the Approving officer to approve (as configure in the GP). This appear as a task  in the UWL of th

  • I cannot get iphone4s to restore to back up after restoring to factory settings.

    This afternoon I reset my iphone 4s to factory settings. I made a back up via itunes (only way I ever do it) prior to the reset. All my attempts to restore from that back up or any back up for that matter have not worked. It will sync ok, transfering

  • Using LIKE and IN at the same time

    Is it possible to use both LIKE and IN at the same time such as: select first_name from emp where user_id LIKE IN('1%','2%') Thanks in advance --Joshua                                                                                                   

  • Merging 2 documents

    I have 1 large pages document and a smaller one that features a large number of charts. I Find when I copy and paste I can get the text but the charts are not coming over. I started to do each item and gave up - there are jjust too many charts and im

  • I have been getting notices about an important security update for a month now and when I click update, I cannot connect to the server.

    I am using a mac... Have downloaded new version. Is all I need to do to Drag Firefox from Applications to trash to uninstall? Do I still need to also delete Program Folder? If so, where can I find it?