[XFCE] wrong window border with 2 monitors

Hey Guys,
a week ago I bought a new monitor and now have a 2 monitor setup on my computer. I'm using a Nvidia graphic card with the proprietary drivers (v302.17-1) and set up these monitors to use separate X servers (two monitors, 2 devices and 2 screens in my xorg.conf). And it works: I can open applications on both monitors separately. Except the fact, that after a logout or reboot, the window border of the primary monitor is reset to some default (seems to be the previous theme I used). I tested this behavior with multiple themes. The panels and the whole second monitor use the configured theme. When re-configure XFCE to use the theme I want, also the primary monitor will use it. But its annoying to do this after every login.
Does anyone have a clue why this is happening, or how to fix it? While researching I read a lot about XFCE problems with 2 monitor setup.
Greetz Corubba
EDIT: I found a little workaround for this. I just added
xfconf-query -c xsettings -p /Net/ThemeName -t string -s Xfce-4.6
xfwm4 --replace &
to my xinitrc. It set the name of my theme and cause the wm to redraw with the new theme.
Last edited by Corubba (2012-07-14 12:03:12)

Any news?

Similar Messages

  • Gnome+compiz - window border issue

    Hi Folks,
    I am a longtime ubuntu user and just transitioned into Arch over the weekend (from karmic 9.10). I am very, very impressed so far, everything works on my thinkpad R50p without issues.
    I have gnome+compiz installed with the opensource ATI driver and everything works , but I have a strange issue. Whenever I maximize a window to fit fullscreen the top window border (with the window name, maximize/minimize/close buttons) doesn't display properly. I am able to 'unmaximize' windows by right clicking and choosing the proper option on the top window border.
    A couple screen shots:
    regular, unmaximized window (notice blue border): http://imgur.com/EMumh.png
    same window, maximized (notice absence of blue border just beneath the gnome top panel, where the mouse pointer is): http://imgur.com/Vrtzo.png
    Is there a fix for this issue? Do I have some setting wrong somewhere, by any chance?
    Last edited by psrivats (2010-03-21 19:35:26)

    I was struggling with this problem, until I found this blog.
    He suggests to open ccsm (run it as a command from the terminal, or start it from the system menu) and find windows decoration.
    Make sure it is enabled (it allready was, in my case). Now click on it, to edit the options. In my case command was empty. So, I put gtk-window-decorator
    there, as suggested on the blog, I mentioned earlier. Click on Back and Close. The borders should appear now.
    Hope this helps someone.

  • Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click w

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • My school has a website.  The professor uploads files in Word.  When I click on the link at home using Pages, the download window opens with nothing in it and Safari opens with a blank in the address book.  What Could be wrong?  Wrong set up?

    My school has a website.  The professor uploads files in Word.  When I click on the link at home using Pages, the download window opens with nothing in it and Safari opens with a blank in the address book.  What Could be wrong?  Wrong set up?

    Hi Jo,
    If I'm interpreting this correctly, the Word file downloads correctly, but when you open it in Pages, the link(s) which your instructor has embedded in the Word file are not correctly translated into Pages.
    If the link shows the actual address, you should be able to copy that and paste it into the location bar in Safari, press return, and get to the website that way.
    An alternate route might be to download one of the open source Office applications, OpenOffice.org, LibreOffice, or NeoOffice. These are written to more closely emulate the behaviours of MS Word than Pages, and may provide better support for links embedded in Word files.
    Regards,
    Barry

  • [SOLVED] gnome: how to move window to other monitor with hotkey?

    now if I understand right gnome does not support a hotkey or option to move a window to another monitor by default (eg. after having been installed with
    pacman -S gnome
    so I think the solution is to use an alternate window manager (I think the default is metacity) so my question is which window manager should I use that has this feature (criteria are relatively lightweight, stable and easily set up)? also can anyone point me to instructions on how to install a non-standard window manager with a desktop environment?
    thanks in advance and sorry for the newbie question.
    Last edited by crashandburn4 (2013-07-15 02:03:08)

    I don't use gnome, but if you extend the desktop, don't you just have to move the window out of the view of the one screen to the other?
    I'm using i3, a tiling window manager. it's very lightweight and easy to setup. just install the whole group "i3" together with the package "dmenu", edit ~/.xinitrc to run "exec i3" and start it using the startx command
    you can use the arander to configure how the screens are aranged.
    in i3 you can move a whole "desktop" to another screen, or just move programms to other "desktops", just read the manual on their website

  • Command key activates wrong window in Mountain Lion

    I've got some strange bug on my computer that has stumped every genius in the three Apple Stores I've been to--they even took it to the back to ask all the Genius' in the store, so it seems to be a nasty bug. so I figured maybe you all could help me out.
    The issue is this: After I upgraded to Mountain Lion (from Snow Leopard) when I use my "command" key, it randomly activates a window other than the one in focus (on top) of the other windows.  So, for example, if I'm in Safari and try to copy something (Cmd+C) but I also have Word open, it will switch to Word and copy whatever is in Word.  It does this with all programs (even with Finder!), no matter what the Command function I'm trying to use.  If I close the program, the strange behavior will stop for a short time and then come back with another program.  When Cmd activates Finder, I have to relaunch Finder and that temporarily alleviates the problem.  It does this odd behavior with an external keyboard (and the on-screen keyboard), meaning that it's a software, not hardware error.
    I have taken the following actions to fix the problem:
    - Reset PRAM (no change to problem)
    - Using Disk Utility to repair permissions and verify disk (no change to problem)
    - Created a new user on the computer (problem re-appeared after importing my backup files using MigrationAssistant)
    - Created a new user on the computer and imported files without importing "Settings" but problem reappeared
    - Reinstalled Mountain Lion (problem appeared after importing my backup files using MigrationAssistant)
    The last Genius thought the error was due to an application corrupting some system-wide file in Mountain Lion, so we wiped my hard drive, reinstalled files, and imported my documents but not my apps.  I manually installed one app at a time and had no issues for 3 months or so.
    The problem "randomly" came back last week.  Looking at apps that were installed recently, it shows:
    - Flux (update - but Flux was on my computer for 3 months with no issues)
    - Quicksand (update - but Quicksand was NOT on my computer last year when the problem started)
    - VLC Media Player (this WAS on my computer last year but was NOT on my computer in the 3 months with no issue).
    Thus, it seems that the culprit app was VLC.  I've deleted it (using AppTrap to clear system files), but the problem still exists.
    So, three questions:
    1)  Does anyone have any idea why this is happening, how to prevent it, or whether it might start again even if I wipe and reinstall everything?
    2) I'd like to fix the problem without wiping my computer and doing a clean install of everything.  Any ideas of how I could avoid doing that?
    3) If I have to sacrifice VLC to solve the problem, fine, but I'd prefer not to.  Any ideas as to how I could use it still?
    TLDR: Command key activates wrong window in Mountain Lion; confirmed software issue; reinstall worked fine until installed VLC Media Player and problem returned; how do I fix it?
    themarkofbooks
    MBPro (mid 2009) on 10.8.5
    Regularly (near daily) backup to TimeMachine

    Hardware Information:
              MacBook Pro (13-inch, Mid 2009)
              MacBook Pro - model: MacBookPro5,5
              1 2.53 GHz Intel Core 2 Duo CPU: 2 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce 9400M - VRAM: 256 MB
    Startup Items:
              HP IO - Path: /Library/StartupItems/HP IO
              HP Trap Monitor - Path: /Library/StartupItems/HP Trap Monitor
    System Software:
              OS X 10.8.5 (12F45) - Uptime: 1 day 13:6:33
    Disk Information:
              HGST HTS721010A9E630 disk0 : (1 TB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 999.35 GB (65.22 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              HL-DT-ST DVDRW  GS23N 
    USB Information:
              Apple Inc. Built-in iSight
              Seagate Expansion Desk 3 TB
                        disk1s1 (disk1s1) <not mounted>: 314.6 MB
                        Time Machine (disk1s2) /Volumes/Time Machine: 1.75 TB (661.99 GB free)
                        Boot OS X (disk1s3) <not mounted>: 134.2 MB
                        Seagate (disk1s4) /Volumes/Seagate: 1.25 TB (1.25 TB free)
              Apple Internal Memory Card Reader
              HP Deskjet F300 series
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.Cvnt.nke          (2.2.0)
              com.Cvnt.driver.CvntDriver          (2.2.0)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.Cvnt.daemon.plist
              [loaded] com.google.keystone.daemon.plist
              [loaded] com.microsoft.office.licensing.helper.plist
    Launch Agents:
              [loaded] com.Cvnt.start.plist
              [loaded] com.google.keystone.agent.plist
    User Launch Agents:
              [failed] com.apple.CSConfigDotMacCert-[redacted]@me.com-SharedServices.Agent.plist
    User Login Items:
              Flux
              iTunesHelper
              Bartender
              Caffeine
              Degrees
              Dropbox
              BetterSnapTool
              Covenant Eyes
              SkyDrive
              SlimBatteryMonitor
              Droplr
              Battery Health
              Spotdox
              handyPrintDaemon
              DeskConnect
              SecondBar
              Display Menu
              Battery Time Remaining
              Quicksand
              Flux
              CrossOver CD Helper
              AppTrap
    3rd Party Preference Panes:
              AppTrap
              Flash Player
              handyPrint
              Java
              Perian
    Internet Plug-ins:
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              googletalkbrowserplugin.plugin
              iPhotoPhotocast.plugin
              JavaAppletPlugin.plugin
              npgtpo3dautoplugin.plugin
              o1dbrowserplugin.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Top Processes by CPU:
                   7%          backupd
                   6%          WindowServer
                   2%          Finder
                   2%          SystemUIServer
                   1%          EtreCheck
                   1%          hidd
                   1%          mds
                   0%          Microsoft Word
                   0%          ps
                   0%          ocspd
    Top Processes by Memory:
              164 MB             HPScanner
              139 MB             WebProcess
              106 MB             mds
              106 MB             Mail
              90 MB              Dropbox
              90 MB              WindowServer
              82 MB              Microsoft Word
              74 MB              applet
              74 MB              Dock
              66 MB              DashboardClient
    Virtual Memory Statistics
              4.30 GB            Free RAM
              2.23 GB            Active RAM
              512 MB             Inactive RAM
              738 MB             Wired RAM
              876 MB             Page-ins
              0 B                Page-outs

  • 2011 Macbook Pro, running windows 7, two monitors?

    I have a 2011 Macbook Pro 13inch, running windows 7 with thunderbolt to dvi cable, can I use a dvi splitter to get two monitors with seperate desktops?
    I am currently using an external montior for one extra desktop, but I keep needing more room.

    jazzdude9792 wrote:
    It had beens sleeping running Windows 7 in my backpack while plugged in for a few hours, and you could literally cook an egg on it. It was that hot.
    If it was plugged in and recharging IN your backpack you probably got the battery hot. I don't know if there is an overheat auto-shut down feature for the battery.
    It may have woke Windows up to tell you it got hot and then crashed or tried to shutdown and couldn't.
    As far as the heat for the processor or ram, it does have an auto shut down for overheat situations but if it crash's and stays in limbo land then that part of it won't see it and it could damage things inside. Depending on how you had your backpack stuffed last time and this time it could just be a coincident on getting extra hot. Depending on what year MacPro you have you can either use the Hardware Test DVD that came with your computer (or press and hold the D key when it restarts) to check to see if it can find anything wrong.
    Or you may have a hardware problem that makes it wake up or restart by itself and Windows just happens to have the right combination to trigger it. If it's still under warranty you may want to have Apple look at it?
    Not to mention, if it's happened before then maybe it's time to see WHY it does it before it does do some damage?
    Try putting it to sleep and see if you can replicate the problem while at home.

  • [SOLVED] XFCE - Incorrect windows placement

    Hi,
    I'm currently having a issue with XFCE's window placement. In the settings panel, under Window Manager Tweaks > Placement, window placement is set to Center for all windows, but this option has no effect. I tried changing it to place windows under the mouse, but it also has no effect on the windows placement. Windows keep opening on the screen corners.
    I checked the forums for similar problems, and found some results, but none of the solutions worked for me. Also, those are quite old topics.
    [Solved] XFCE - Having Trouble Centering Windows
    [solved] Xfce4, new windows position
    Xfce 4.8 xfwm4 window placement settings no longer have any effect.
    This is not a big problem, but I'm kind of picky, so if anyone knows a solution to this problem, please share it.
    Best Regards,
    Agkel0s
    Last edited by Agkel0s (2014-07-14 21:37:54)

    Agkel0s wrote:Currently the slider is on the minimum value, and windows of all sizes should open centered on screen.
    Shouldn't you actually have it on the maximum value?
    I believe the way this works is that the size (or ratio, the option is actually called placement_ratio IIRC and is a ratio of window size vs screen size) you specify here is the minimum to trigger "smart placement." If the window isn't (at least) of that size, then the default (i.e. center or under mouse pointer, as defined below) will be used. So if you want every window to use the default placement, you should set the minimum size for smart placement to be as large as possible. (In fact, I believe with a ratio set to 100 (i.e. slider to the max) it should always use the default placement, regardless of window size, which is want you're after if I'm not wrong.)
    If even with the slider to the max you get new windows placed using smart placement, then it sounds like a bug I'd say.
    (Also, just as FYI and though you might simply want all windows to be centered, I wasn't happy with xfwm's smart placement myself, you can see this topic for a (IMO) better alternative.)

  • Windows 8.1 Monitors

    I have been using Windows 8 with an external monitor for about a year.  This moring I finally upgraded to Windows 8.1.  Now I cannot access my external monitor.  Anyone have any suggestions.  I should have just stayed wit Win 8.0.
    Thanks!

    Hello again @Mugger,
    I have moved your post to the original thread that we have been working on so that all out troubleshooting is on the same thread for convenence. I would like to thank @jaco1x4 for notifying me of your post so I could respond to it.
    So we have an HP Pavilion g7-2240us Notebook PC that when running Windows 8 the external display (a 32 inch Toshiba T.V.) worked perfectly, but once it was upgraded to Windows 8.1 the display goes blanks along with the monitor when attached. I am providing you with the Intel High-Definition (HD) Graphics Driver and the AMD High-Definition (HD) Graphics Driver, which are the graphics drivers that you should be running on that computer running Windows 8.1.
    If just installing the drivers does not work I would like you to follow the instructions below:
    Step 1. Disconnec the Tobshiba TV from the computer
    Step 2. Download and save to the desktop the Intel High-Definition (HD) Graphics Driver and the AMD High-Definition (HD) Graphics
    Step 3. At the Tiles menu type "device manager"
    Step 4. Click on Device Manager
    Step 5. Click on Display Adapters
    Step 6. Right-click and uninstall your Graphic Adapters
    ***IMPORTANT: when you get the option to delete the drivers make sure you delete them from your system
    Step 7. From your desktop install the Intel High-Definition (HD) Graphics Driver and the AMD High-Definition (HD) Graphics drivers.
    Step 8. Restart your computer
    Step 9. Attach the Toshiba TV
    Please re-post if you require additional support. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • MB Air 13", cannot move windows to secondary monitor

    MB Air 13", cannot move windows to secondary monitor. The pointer moves to the secondary monitor, but when I grab a window and move it, it stops at the screen border

    Comment from Berntfromhasselby:
    Thanks for the good advice, but it was too advanced for me; I do not know how to go to setup or startup. Then I thought I can search for it in "help", but I did not find anything about setup there. I only found something about safe start, where I had to switch off the computer and then press "shift" immediately after a sound during start. I tried that, but nothing special happened. So I thought I had to give up, and remembered once I asked a friend, who is computer specialist, why the help often is of no help. He said that it is obviously very difficult to help people by the help function.
    Then I set the computer to sleep. For some reason I started it again, and NOW it was quick! It was repaired!?! So the next question is:
    Do MacBook Airs also need to be switched off sometimes, so they do not become slow (when only using sleep)? Are they somewhat  similar to PCs which can become slow with time due to accumulation of some trash (and are difficult to make quick)?
    Then today I liked to listen to Mozart's beautiful 20th piano concerto on You tube, but now it had no sound?! I tried help again and found Sound, but the were no  loudspeakers available and everything there was grey, so I could not change anything..... Do I have to go to some service? I took my other MacBook Air (11") and listened to Mozart and noticed that I need to have two of the best and most expensive computers in the world to be sure to have one working....
    Then I remembered the most important PC-rule I learnt from my daughter's boyfriend: if you have some problem, restart! I did so and the sound was there again, probably it disappeared during the safe start procedure. "If anything can go wrong, it will." Ironically, I have been working as professor at a technical university, but in fiber optics, not with computers...
    I any case, it is good now, so the problem is solved. Thanks again!

  • [compiz] compiz without window border

    hi all
    i am tying to run compiz , but no way to have a window border
    it is a laptop with intel chipset, kernel mode setting activated
    lspci
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07) (prog-if 00 [VGA controller])
    Subsystem: CLEVO/KAPOK Computer Device 072f
    Flags: bus master, fast devsel, latency 0, IRQ 31
    Memory at f4400000 (64-bit, non-prefetchable) [size=4M]
    Memory at d0000000 (64-bit, prefetchable) [size=256M]
    I/O ports at 1800 [size=8]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [d0] Power Management version 3
    Kernel driver in use: i915
    no xorg.conf file
    /var/log/Xorg.0.log (very long)
    X.Org X Server 1.6.3
    Release Date: 2009-7-31
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH x86_64
    Current Operating System: Linux keynux 2.6.30-ARCH #1 SMP PREEMPT Mon Aug 17 16:06:45 CEST 2009 x86_64
    Build Date: 25 August 2009 09:11:18PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Aug 26 17:11:51 2009
    (II) Loader magic: 0x15c0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI:*(0:0:2:0) 8086:2a42:1558:072f Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller rev 7, Mem @ 0xf4400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
    (--) PCI: (0:0:2:1) 8086:2a43:1558:072f Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller rev 7, Mem @ 0xf4100000/1048576
    (==) Using default built-in configuration (39 lines)
    (==) --- Start of built-in configuration ---
    Section "Device"
    Identifier "Builtin Default intel Device 0"
    Driver "intel"
    EndSection
    Section "Screen"
    Identifier "Builtin Default intel Screen 0"
    Device "Builtin Default intel Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default i810 Device 0"
    Driver "i810"
    EndSection
    Section "Screen"
    Identifier "Builtin Default i810 Screen 0"
    Device "Builtin Default i810 Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default vesa Device 0"
    Driver "vesa"
    EndSection
    Section "Screen"
    Identifier "Builtin Default vesa Screen 0"
    Device "Builtin Default vesa Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default fbdev Device 0"
    Driver "fbdev"
    EndSection
    Section "Screen"
    Identifier "Builtin Default fbdev Screen 0"
    Device "Builtin Default fbdev Device 0"
    EndSection
    Section "ServerLayout"
    Identifier "Builtin Default Layout"
    Screen "Builtin Default intel Screen 0"
    Screen "Builtin Default i810 Screen 0"
    Screen "Builtin Default vesa Screen 0"
    Screen "Builtin Default fbdev Screen 0"
    EndSection
    (==) --- End of built-in configuration ---
    (==) ServerLayout "Builtin Default Layout"
    (**) |-->Screen "Builtin Default intel Screen 0" (0)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default intel Device 0"
    (==) No monitor specified for screen "Builtin Default intel Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default i810 Screen 0" (1)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default i810 Device 0"
    (==) No monitor specified for screen "Builtin Default i810 Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default vesa Screen 0" (2)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default vesa Device 0"
    (==) No monitor specified for screen "Builtin Default vesa Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default fbdev Screen 0" (3)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default fbdev Device 0"
    (==) No monitor specified for screen "Builtin Default fbdev Screen 0".
    Using a default monitor configuration.
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 2.7.99
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "i810"
    (WW) Warning, couldn't open module i810
    (II) UnloadModule: "i810"
    (EE) Failed to load module "i810" (module does not exist, 0)
    (II) LoadModule: "vesa"
    (II) Loading /usr/lib/xorg/modules/drivers//vesa_drv.so
    (II) Module vesa: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.2.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "fbdev"
    (WW) Warning, couldn't open module fbdev
    (II) UnloadModule: "fbdev"
    (EE) Failed to load module "fbdev" (module does not exist, 0)
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, IGD_GM, IGD_G, 965G, G35,
    965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    Mobile Intel® GM45 Express Chipset,
    Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41, IGDNG_D,
    IGDNG_M
    (II) VESA: driver for VESA chipsets: vesa
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (WW) Falling back to old probe method for vesa
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: drmOpenMinor returns 8
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) intel(0): Creating default Display subsection in Screen section
    "Builtin Default intel Screen 0" for depth/fbbpp 24/32
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (II) intel(0): Integrated Graphics Chipset: Intel(R) Mobile Intel® GM45 Express Chipset
    (--) intel(0): Chipset: "Mobile Intel® GM45 Express Chipset"
    (II) intel(0): Output VGA1 has no monitor section
    (II) intel(0): Output LVDS1 has no monitor section
    (II) intel(0): Output VGA1 disconnected
    (II) intel(0): Output LVDS1 connected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS1 using initial mode 1280x800
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) intel(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) UnloadModule: "vesa"
    (II) Unloading /usr/lib/xorg/modules/drivers//vesa_drv.so
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) intel(0): [DRI2] Setup complete
    (**) intel(0): Kernel mode setting active, disabling FBC.
    (**) intel(0): Framebuffer compression disabled
    (**) intel(0): Tiling enabled
    (**) intel(0): SwapBuffers wait enabled
    (==) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (II) intel(0): Tiled allocation successful.
    (II) UXA(0): Driver registered support for the following operations:
    (II) solid
    (II) copy
    (II) composite (RENDER acceleration)
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): No memory allocations
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) intel(0): DPMS enabled
    (==) intel(0): Intel XvMC decoder disabled
    (II) intel(0): Set up textured video
    (II) intel(0): direct rendering: DRI2 Enabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i965_dri.so
    (II) GLX: Initialized DRI2 GL provider for screen 0
    (II) intel(0): Setting screen physical size to 261 x 163
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 2.2.5
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) Macintosh mouse button emulation: initialized for relative axes.
    (II) config/hal: Adding input device PIXART USB OPTICAL MOUSE
    (**) PIXART USB OPTICAL MOUSE: always reports core events
    (**) PIXART USB OPTICAL MOUSE: Device: "/dev/input/event10"
    (II) PIXART USB OPTICAL MOUSE: Found 3 mouse buttons
    (II) PIXART USB OPTICAL MOUSE: Found x and y relative axes
    (II) PIXART USB OPTICAL MOUSE: Found scroll wheel(s)
    (II) PIXART USB OPTICAL MOUSE: Configuring as mouse
    (**) PIXART USB OPTICAL MOUSE: YAxisMapping: buttons 4 and 5
    (**) PIXART USB OPTICAL MOUSE: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "PIXART USB OPTICAL MOUSE" (type: MOUSE)
    (**) PIXART USB OPTICAL MOUSE: (accel) keeping acceleration scheme 1
    (**) PIXART USB OPTICAL MOUSE: (accel) filter chain progression: 2.00
    (**) PIXART USB OPTICAL MOUSE: (accel) filter stage 0: 20.00 ms
    (**) PIXART USB OPTICAL MOUSE: (accel) set acceleration profile 0
    (II) PIXART USB OPTICAL MOUSE: initialized for relative axes.
    (II) config/hal: Adding input device SynPS/2 Synaptics TouchPad
    (II) LoadModule: "synaptics"
    (II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.1.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (II) Synaptics touchpad driver version 1.1.2
    (**) Option "Device" "/dev/input/event8"
    (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
    (II) SynPS/2 Synaptics TouchPad: buttons: left right middle
    (**) Option "TapButton1" "1"
    (**) Option "TapButton2" "2"
    (**) Option "TapButton3" "3"
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (**) SynPS/2 Synaptics TouchPad: always reports core events
    (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    (**) SynPS/2 Synaptics TouchPad: (accel) filter chain progression: 2.00
    (**) SynPS/2 Synaptics TouchPad: (accel) filter stage 0: 20.00 ms
    (**) SynPS/2 Synaptics TouchPad: (accel) set acceleration profile 0
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "fr"
    (II) config/hal: Adding input device Sleep Button
    (**) Sleep Button: always reports core events
    (**) Sleep Button: Device: "/dev/input/event7"
    (II) Sleep Button: Found keys
    (II) Sleep Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "fr"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event6"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "fr"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event2"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "fr"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event4"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "fr"
    (II) intel(0): EDID vendor "BOE", prod id 1203
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 71.10 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (49.4 kHz)
    (II) intel(0): EDID vendor "BOE", prod id 1203
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 71.10 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (49.4 kHz)
    (II) intel(0): EDID vendor "BOE", prod id 1203
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 71.10 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (49.4 kHz)
    (II) AIGLX: Suspending AIGLX clients for VT switch
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) AIGLX: Resuming AIGLX clients after VT switch
    (II) intel(0): No memory allocations
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) PIXART USB OPTICAL MOUSE: Device reopened after 1 attempts.
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) AIGLX: Suspending AIGLX clients for VT switch
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) AIGLX: Resuming AIGLX clients after VT switch
    (II) intel(0): No memory allocations
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) PIXART USB OPTICAL MOUSE: Device reopened after 1 attempts.
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) AIGLX: Suspending AIGLX clients for VT switch
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) AIGLX: Resuming AIGLX clients after VT switch
    (II) intel(0): No memory allocations
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) PIXART USB OPTICAL MOUSE: Device reopened after 1 attempts.
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    i run fusion icon without error and switch from metacity to compiz successfully
    fusion-icon
    * Detected Session: gnome
    * Searching for installed applications...
    * Intel detected, exporting: INTEL_BATCH=1
    * Using the GTK Interface
    * Metacity is already running
    * Setting window manager to Compiz
    ... executing: compiz --replace --sm-disable --ignore-desktop-hints ccp
    * Setting decorator to Emerald ("emerald --replace")
    * Reloading compiz
    ... executing: compiz --replace --sm-disable --ignore-desktop-hints ccp
    * Setting window manager to Metacity
    but when compiz is activated, no border, with emerald or gtk-windows-decorator
    when i try to start compiz standalone from gdm, Xorg starts but gnome freeze,  it fails with dmesg like this
    drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    no error when starting a normal gnome session
    i have no idea....
    if i only had an error code while running fusion-icon....

    In compizconfig settings manager > effect > window decoration should be enabled. Check that.
    Another you'll need are in Window management > move window and resize window.

  • Trying to install Windows 7 with Bootcamp on my Macbook with a faulty CD drive

    I am trying to install Windows 7 with Bootcamp on my Macbook A1278 (OS 10.6.8) with a faulty CD drive (CDs and DVDs get stuck in it and I had to get it removed in an Apple store, so I don't want to use it anymore). I have got a licence for the product but I am only in possession of the ISO, is there any way to install it using a USB stick?
    I don't have many options while launching Bootcamp, only
    "Download the Windows support software for this Mac" but when I try I get a message explaining me that the download could not continue as the software is not available,
    or
    "I have the Mac OS X installation disc [...]" but obviously I can't use my CD drive so this is not an option. I tried it anyway and I created a Windows partition but when asked to "start the Windows installer", I can only continue by insering a CD.
    I tried to use a USB stick and added the ISO on it but nothing has changed.
    How can I install my copy on Windows?...

    BobTheFisherman > Hem, yeah, that is stating the problem and not working toward resolving it.
    Turbostar > I checked the link and it seems to be relating to the first video I have seen on the subject. I tried to install Tuxera then to work with rEFIt, but I did not get any result yet (I don't know if I am doing something wrong during the USB writing process as many different ways are explained on different websites).
    So far my last try was to launch Windows 7 USB DVD Download Tool on VMware Fusion but it the only disk shown is A:\ Removable disk (not the name of my USB) and it is stated that the disk is being used by another program, even though it's not open on the Mac side.
    Some websites are advising to write the copy of windows on a USB via a PC and then launch it on the Macbook, so I might try that in the next few days. I will keep you updated.
    If anyone has another option I might not have think about, or an advice on how to efficiently create a bootable Windows setup USB with my Mac, please let me know!

  • Microsoft Windows Server DNS Monitoring v7.1.10100.0 High CPU Usage on Windows Server 2012 R2

    Hello!
    I've a big problem with this MP. When the zone monitoring is enabled (by default) the MonitoringHost.exe takes up all the CPU. I've put the zones in Maintenance mode.
    I've got this problem only with a new Windows 2012 R2 server. Other Windows Servers (2003 R2, 2008 & 2008 R2) with DNS Server Role they don't have this problem.
    Any ideas?
    Thank you!
    The configuration is:
    SCOM 2012 R2
    Microsoft Windows Server DNS Monitoring v7.1.10100.0 Management Pack
    DNS Management Pack Action Account has been configured
    "Act as proxy..." is enabled
    The monitored server config:
    Windows Server 2012 R2 (standalone)
    DNS Server Role installed
    DNS Management Pack Action Account is a member of the "Administrators" group
    The only events I've are the following but I'm not sure if they're related (because of the ...DNSSEC...):
    Log Name:      Operations Manager
    Source:        Health Service Modules
    Date:          8/11/2013 11:16:21
    Event ID:      11903
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      NS2...
    Description:
    The Microsoft Operations Manager Expression Filter Module could not convert the received value to the requested type.
    Property Expression: Property[@Name='QueriesResponded']
    Property Value: Property[@Name='QueriesResponded']
    Conversion Type: DataItemElementTypeInteger(5)
    Original Error: 0x80FF005A
    One or more workflows were affected by this. 
    Workflow name: Microsoft.Windows.Server.DNS.2012R2.Monitor.DNSSEC.NameResolutionQueries
    Instance name: <zone-name> on NS2...
    Instance ID: {4BCB4738-1287-2E6F-E0AA-1FF8D66DDB0B}
    Management group: <grp-name>
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Health Service Modules" />
        <EventID Qualifiers="49152">11903</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-11-08T09:16:21.000000000Z" />
        <EventRecordID>9602</EventRecordID>
        <Channel>Operations Manager</Channel>
        <Computer>NS2...</Computer>
        <Security />
      </System>
      <EventData>
        <Data><grp-name></Data>
        <Data>Microsoft.Windows.Server.DNS.2012R2.Monitor.DNSSEC.NameResolutionQueries</Data>
        <Data><zone name> on NS2...</Data>
        <Data>{4BCB4738-1287-2E6F-E0AA-1FF8D66DDB0B}</Data>
        <Data>Property[@Name='QueriesResponded']</Data>
        <Data>Property[@Name='QueriesResponded']</Data>
        <Data>DataItemElementTypeInteger(5)</Data>
        <Data>0x80FF005A</Data>
      </EventData>
    </Event>

    Glad to see you found the solution and thanks for your sharing.
    Niki Han
    TechNet Community Support

  • Authentication issues on Windows 7 with Internet Explorer 8 (Crystal 2008)

    Hi,
    We are in the process of migrating from Windows XP to Windows 7 (with Internet Explorer 8).
    I have noticed that a web application which depends on Crystal 2008 is behaving differently in the new environment. For example, when I try to load a report I get this error:
    Access to report file denied. Another program may be using it.
    I know that this error can be caused by a permissions problem on the Windows temp folder, and I know there are various ways of pinpointing the exact permissions problem and various ways of resolving if that's the case. The fix that worked for us in Windows XP does not seem to work in Windows 7. My gut feeling is that IE is passing credential in some way differently from how it did before.
    Since many aspects of security are so different in Windows 7 compared with XP, I was hoping to find some general guidelines from SAP/Crystal re: how to deploy or configure the client/server in this environment.
    Are there any general guidelines available?
    Thank you for any help... shannon

    Hi Shannon,
    Not really, CR assumes it can access all of it's dependencies so it is a permission issue. Other than the usual config issues with IIS, full access to the      emp folder, full permissions on the Viewer folder, setting the framework in App pool correctly, etc.
    Do you have Service Pack 3 installed for Cr 2008 and the latest Fix Pack 3.5?
    https://smpdl.sap-ag.de/~sapidp/012002523100009989492010E/cr2008_sp3_fullbuild.zip ( requires uninstall first -  keycode is required )
    Incremental for SP2 - https://smpdl.sap-ag.de/~sapidp/012002523100007123572010E/cr2008_sp3.exe
    Fix Pack: https://smpdl.sap-ag.de/~sapidp/012002523100006341722011E/cr2008fp35.exe
    References for WEB app's:
    [Crystal Report Viewers in Visual Studio .NET u2013 Toolbar Images|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/50aa68c0-82dd-2b10-42bf-e5502b45cd3a]
    This one could be a great reference also:
    [Deploying Crystal Reports 10 .NET Applications|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/30c6d7c6-7164-2b10-90b8-d6020b116f4d]
    You could also use Process Monitor from Microsoft and scan the log file for Access Denied on the IIS Process.
    And also search [Microsoft's Forums|http://social.msdn.microsoft.com/Search/en-US?query=iis%207%20configuration%20and%20security&Refinement=123&ac=3] on how to:
    Thank you
    Don

Maybe you are looking for

  • Missing photos after updating to iOS 8

    I recently updated my iPad to ios 8, and an album of my pictures is missing. A lot of them weren't backed up, but I don't see why they would disappear. I've searched through all my pictures and I can't find them If anyone has a solution, please tell

  • Unable to Deploy Applications:  "process is not defined in the descriptor"

    All I'm having a fairly serious issue here trying to take an LCA from one environment and get it in another environment.  Both the source and destination environments are LCES 2.5 (LCES 2 with SP2).  I have roughly 6 applications and there are some f

  • Getting NullPointer Exception while using  setNamedWhereClauseParam()

    Hi, I am using VO to execute an advance search query, for this i am first formatting the where and then setting the bind variable values programmatically. ViewObjectImpl myVO = //some code to get VO instance. myVO.setWhereClauseParams(null); myVO.set

  • Seeing the SQL?

    Anyone know where I can see the resulting SQL from a JDBC adapter?   Is this even possible in the XI monitoring/tools?  I want to see the resulting SQL string of this XML file through the JDBC adapter (and possibly the errors). <?xml version="1.0" en

  • How can I extract images from .mov?

    Here's my problem. I exported an album to a movie and now some of my album images have disappeared. I know the images are still in iPhoto [photos] but selecting them is going to be time consuming. Is there a method in iPhoto or third party software t