[solved] who command doesn't show X server session

Hi there,
shouldn't the `who` command show all logged in user sessions, including my X server session?
However, who only shows my tty1 session:
[orschiro@thinkpad]$ who
orschiro tty1 2013-10-25 17:01
What is the output of who on your system?
Last edited by orschiro (2013-10-27 20:21:32)

Alright. The point is, what do I need to do in order that who shows my X session?
I tried export DISPLAY=:0 but this doesn't add :0 to the who command listing.
The reason I am asking is that I want to use the following dispatcher script which queries for :0, assuming that who shows the display variable.
#!/bin/sh
INTERFACE=$1 # The interface which is brought up or down
STATUS=$2 # The new state of the interface
case "$STATUS" in
up) # $INTERFACE is up
USERS=$(ps -o user --no-headers -C dropbox)
killall dropbox
for user in $USERS; do
su -c "DISPLAY=$(who | sed -e "/$user/! d;/pts/d;s/^.*[^0-9]\\(:[0-9.]\\+\\).*$/\\1/p;d" | head -n1) dropboxd &" $user
done
down) # $INTERFACE is down
esac
Last edited by orschiro (2013-10-27 07:04:25)

Similar Messages

  • XML shows in Flash, but doesn't show on server?

    Hello.
    I have a Flash website with 5 sections (Featured Work, News, About Me, Services, Contact). All the sections works fine, both in Flash and on the server, if the content isn't loaded from XML. But in the News section i use XML for loading the news.
    If i test my movie in flash, the whole site works fine, and the XML News works perfect. But if i test the movie in a virtual server (like MAMP) or if i test it on my own server, the news section doesn't show.
    I can't seem to find the problem?
    Jonas Philippon

    I'm sorry to sound so stupid, but this is new to me.
    I tried pasting the trace(MT2.newsNum,Number(MT2.newsNum)) in both out and in the for loop, and i still get the same trace "5 5"
    I'm not really sure what to do, so i'll just try explaining my whole site to you:
    I have my "main.fla" with three layers with actionsscript:
    - Navigation Actions
         - Has a for loop that creates 6 textfields with clickevents and SWFAddress that changes between 6 frames in a MovieClip (SubNavBar).
    - Positioning Actions
         - Positions the textfield buttons, the navigation bar, and the sub navigation bar in the SubNavBar movieclip, and places my dynamic background.
    - XML
         - I can't explain the XML layer, so i have attached it.
    The SubNavBar MovieClip has 6 frames. The 1 is empty, so the site is clear at first. In frame 2, 4 and 6 there is a for loop like in the navigation layer, so these layers have a sub navigation bar, that once again changes between some frames in a movieclip.
    In frame 3 their is the news code i pasted earlier, and in frame 5 there isn't anything yes, but it should just be graphics.
    XML LAYER:
    // XML LISTS //
    // ========= //
    var newsTitle:XMLList;
    var newsInfo:XMLList;
    var newsContent:XMLList;
    var newsTitleArray:Array;
    var newsInfoArray:Array;
    var newsContentArray:Array;
    // NUMBER OF ITEMS
    var newsNum:Number;
    // LOAD XML //
    // ======== //
    var xml:XMLLoader = new XMLLoader(this,"data.xml");
    // function called when XML is loaded
    function getXML(xmlData:XML):void {
    // STORING RELEVANT DATA INTO LISTS FOR LATER ACCESS //
    newsTitle = xmlData.news.article.title;
    newsInfo = xmlData.news.article.info;
    newsContent = xmlData.news.article.content;
    newsNum = newsTitle.length();
        newsTitleArray = xmlData.news.article.title.text().toXMLString().split("\n") ;
    newsTitleArray.reverse();
    newsInfoArray = xmlData.news.article.info.text().toXMLString().split("\n") ;
    newsInfoArray.reverse();
    newsContentArray = xmlData.news.article.content.text().toXMLString().split("\n") ;
    newsContentArray.reverse();
    In the folder i have uploaded to my server, i have following:
    - AC_RunActiveContent.js - Background.png (main background) - com (folder) (GreenSock) - data.xml - index.html - js (folder) (SWFAddress) - mailer.php (Contact Form) - main.fla - main.swf - media (folder) (Pictures For Background) - Mosaic.swf (Mosaic Overlay For Background) - P-Logo.png - preview.swf (Background) - SWFAddress.as - SWFAddressEvent.as - textLayout_1.0.0.595.swz - xml (folder) (xml config for background) (SEPERATE FLA FILE (NOT A PROBLEM) - XMLLoader.as
    The XMLLoader.as is the file that loads my data.xml. The data.xml has the text to my news section.
    XMLLoader.as:
    package {
    import flash.events.IOErrorEvent;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.display.Sprite;
    import flash.display.MovieClip;
    public class XMLLoader extends Sprite {
    private var loader:URLLoader = new URLLoader();
    public var loadedXML:XML;
    // accept parent path to xml
    public function XMLLoader(mT:MovieClip, path:String):void {
    // LOADING XML //
    // =========== //
    loader.load(new URLRequest(path));
    loader.addEventListener(Event.COMPLETE, onComplete, false, 0, true);
    loader.addEventListener(IOErrorEvent.IO_ERROR, onIOError, false, 0, true);
    function onComplete(evt:Event):void {
    loadedXML = new XML(evt.target.data);
    loader.removeEventListener(Event.COMPLETE, onComplete);
    loader.removeEventListener(IOErrorEvent.IO_ERROR, onIOError);
    // Run getXML function from where this clas was instantiated
    mT.getXML(loadedXML);
    function onIOError(evt:IOErrorEvent):void {
    trace("Error: " + evt.text);
    I hope this helps you? I hope you now can give me more specific help?

  • [SOLVED] mount command and fstab show different file systems

    I recently setup my /etc/fstab to mount by LABEL.
      LABEL=ArchLinux        /    ext2    rw,noatime,errors=continue    0    0
      LABEL=Data30GB        /data    ext2    rw,noatime            0    0
    When I reboot, these two drives work fine. But I run the "mount" command and it shows:
      /dev/disk/by-uuid/8fac6ab0-3d40-4676-bf30-b23c482b47b9 on / type ext2 (rw,noatime,errors=continue)
      /dev/sdb1 on /data type ext2 (rw,noatime)
    I'm curious, why does mount not list things by how the fstab shows them? By the way, I have other drives labeled and mounted by label and it shows the device (i.e. /dev/sdd1) instead of the LABEL as fstab shows on those as well.
    Anyone know why?
    Last edited by HuckleSmothered (2011-08-06 19:38:35)

    LABEL= and UUID= aren't something the kernel understands -- they're tags interpreted by blkid that resolve to a device, e.g.:
    $ blkid -lt LABEL=root -o device
    /dev/sda2
    This functionality is provided by util-linux's libblkid, which /bin/mount links against. In other words, that syntax in /etc/fstab is just a convenience feature.
    Last edited by falconindy (2011-08-06 19:30:09)

  • Managed server doesn't show in server list in JDev

    I have admin server (AdminServer) and managed server (soa_server1) configured in my domain. I started both server successfully, and in WL console, I see soa_server state is running, and soa-infra is Active; in em I see SOA node on the left panel, and soa_server1 status is up. When I tried to deploy my composite to server (I want to deploy it to soa_server1), I only see AdminServer in the SOA servers list, not soa_server1. how could I make soa_server1 shown?
    Edited by: wiky on 19-Jul-2011 6:30 AM

    To be more specific, this is what I did and the problem I am facing:
    1. configured admin server and manged server (soa_server1) on my domain(weblogic 10.3.5).
    2. started the admin server
    3. started soa_server1
    4. see both servers in WL control, both server state=running
    5. see both server in EM console, both server status are up
    6. in JDev(11.1.1.5.0), created an application server connection, and tested the connection successfully
    7. when I tried to deploy my composite from JDev, I selected the application server connection, on step "SOA servers", it only lists AdminServer.
    I want to deploy my composite to soa_server1. How could I make soa_server1 shown on the list?
    Edited by: wiky on Jul 18, 2011 2:46 PM
    Edited by: wiky on Jul 18, 2011 4:13 PM
    Edited by: wiky on 18-Jul-2011 5:45 PM
    Edited by: wiky on 18-Jul-2011 5:52 PM

  • Catalyst 3850 - Show Power Inline command doesn't show the 1100WAC Power Supply

    Hi,
    I have a stack of 4 WS-C3850-24P switches with data and powerstack cables connected. One of the switches has an additional 1100WAC Power Supply in slot B.
    When I do a "show env power all" I can see the 5 power supplies:
    sh env power all
    SW  PID                 Serial#     Status           Sys Pwr  PoE Pwr  Watts
    1A  PWR-C1-715WAC       LIT17320CEB  OK              Good     Good     715
    1B  Not Present      
    2A  PWR-C1-715WAC       LIT17320B7Q  OK              Good     Good     715
    2B  PWR-C1-1100WAC      LIT17320QUK  OK              Good     Good     1100
    3A  PWR-C1-715WAC       DCB1734G15J  OK              Good     Good     715
    3B  Not Present      
    4A  PWR-C1-715WAC       DCB1734G14A  OK              Good     Good     715
    4B  Not Present
    When I do a "show power inline", it only shows the 715WAC power supplies in slot A of each stack member:
    sh pow inline
    Module   Available     Used     Remaining
              (Watts)     (Watts)    (Watts)
    1           720.0      190.2       529.8
    2           720.0      238.2       481.8
    3           720.0      214.2       505.8
    4           720.0      132.0       588.0
    Any idea how this come ?

    Maybe it's not powered up?

  • Openbox menu etc doesn´t show [SOLVED]

    Hi, I really need some help here.
    I can´t figure out what the hell is wrong with my openbox.
    I had it running smooth, and because Im new to Linux and Arch I played around I guess and configured.
    Somehow I guess I have configured somesthing totally wrong and now my Openbox don´t work as it should.
    I have tried to replace the rc.xml, menu.xml and the autostart.sh with the defaults and still it doesn´t help!
    When I start Openbox pypanel is supposed to be started, it worked before.
    The only thing that comes up when I log in on openbox now is Conky and nothing else. The right click menu nothing works.
    I will post some configs that is related to the subject and I would be very glad if someone could guide me
    Btw im running Openbox with Gnome.
    rc.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- Do not edit this file, it will be overwritten on install.
    Copy the file to $HOME/.config/openbox/ instead. -->
    <openbox_config xmlns="http://openbox.org/3.4/rc">
    <resistance>
    <strength>10</strength>
    <screen_edge_strength>20</screen_edge_strength>
    </resistance>
    <focus>
    <focusNew>yes</focusNew>
    <!-- always try to focus new windows when they appear. other rules do
    apply -->
    <followMouse>no</followMouse>
    <!-- move focus to a window when you move the mouse into it -->
    <focusLast>yes</focusLast>
    <!-- focus the last used window when changing desktops, instead of the one
    under the mouse pointer. when followMouse is enabled -->
    <underMouse>no</underMouse>
    <!-- move focus under the mouse, even when the mouse is not moving -->
    <focusDelay>200</focusDelay>
    <!-- when followMouse is enabled, the mouse must be inside the window for
    this many milliseconds (1000 = 1 sec) before moving focus to it -->
    <raiseOnFocus>no</raiseOnFocus>
    <!-- when followMouse is enabled, and a window is given focus by moving the
    mouse into it, also raise the window -->
    </focus>
    <placement>
    <policy>Smart</policy>
    <!-- 'Smart' or 'UnderMouse' -->
    <center>yes</center>
    <!-- whether to place windows in the center of the free area found or
    the top left corner -->
    <monitor>Any</monitor>
    <!-- with Smart placement on a multi-monitor system, try to place new windows
    on: 'Any' - any monitor, 'Mouse' - where the mouse is, 'Active' - where
    the active window is -->
    </placement>
    <theme>
    <name>Clearlooks</name>
    <titleLayout>NLIMC</titleLayout>
    <!--
    available characters are NDSLIMC, each can occur at most once.
    N: window icon
    L: window label (AKA title).
    I: iconify
    M: maximize
    C: close
    S: shade (roll up/down)
    D: omnipresent (on all desktops).
    -->
    <keepBorder>yes</keepBorder>
    <animateIconify>yes</animateIconify>
    <font place="ActiveWindow">
    <name>sans</name>
    <size>8</size>
    <!-- font size in points -->
    <weight>bold</weight>
    <!-- 'bold' or 'normal' -->
    <slant>normal</slant>
    <!-- 'italic' or 'normal' -->
    </font>
    <font place="InactiveWindow">
    <name>sans</name>
    <size>8</size>
    <!-- font size in points -->
    <weight>bold</weight>
    <!-- 'bold' or 'normal' -->
    <slant>normal</slant>
    <!-- 'italic' or 'normal' -->
    </font>
    <font place="MenuHeader">
    <name>sans</name>
    <size>9</size>
    <!-- font size in points -->
    <weight>normal</weight>
    <!-- 'bold' or 'normal' -->
    <slant>normal</slant>
    <!-- 'italic' or 'normal' -->
    </font>
    <font place="MenuItem">
    <name>sans</name>
    <size>9</size>
    <!-- font size in points -->
    <weight>normal</weight>
    <!-- 'bold' or 'normal' -->
    <slant>normal</slant>
    <!-- 'italic' or 'normal' -->
    </font>
    <font place="OnScreenDisplay">
    <name>sans</name>
    <size>9</size>
    <!-- font size in points -->
    <weight>bold</weight>
    <!-- 'bold' or 'normal' -->
    <slant>normal</slant>
    <!-- 'italic' or 'normal' -->
    </font>
    </theme>
    <desktops>
    <!-- this stuff is only used at startup, pagers allow you to change them
    during a session
    these are default values to use when other ones are not already set
    by other applications, or saved in your session
    use obconf if you want to change these without having to log out
    and back in -->
    <number>4</number>
    <firstdesk>1</firstdesk>
    <names>
    <!-- set names up here if you want to, like this:
    <name>desktop 1</name>
    <name>desktop 2</name>
    -->
    </names>
    <popupTime>875</popupTime>
    <!-- The number of milliseconds to show the popup for when switching
    desktops. Set this to 0 to disable the popup. -->
    </desktops>
    <resize>
    <drawContents>yes</drawContents>
    <popupShow>Nonpixel</popupShow>
    <!-- 'Always', 'Never', or 'Nonpixel' (xterms and such) -->
    <popupPosition>Center</popupPosition>
    <!-- 'Center', 'Top', or 'Fixed' -->
    <popupFixedPosition>
    <!-- these are used if popupPosition is set to 'Fixed' -->
    <x>10</x>
    <!-- positive number for distance from left edge, negative number for
    distance from right edge, or 'Center' -->
    <y>10</y>
    <!-- positive number for distance from top edge, negative number for
    distance from bottom edge, or 'Center' -->
    </popupFixedPosition>
    </resize>
    <!-- You can reserve a portion of your screen where windows will not cover when
    they are maximized, or when they are initially placed.
    Many programs reserve space automatically, but you can use this in other
    cases. -->
    <margins>
    <top>0</top>
    <bottom>0</bottom>
    <left>0</left>
    <right>0</right>
    </margins>
    <dock>
    <position>TopLeft</position>
    <!-- (Top|Bottom)(Left|Right|)|Top|Bottom|Left|Right|Floating -->
    <floatingX>0</floatingX>
    <floatingY>0</floatingY>
    <noStrut>no</noStrut>
    <stacking>Above</stacking>
    <!-- 'Above', 'Normal', or 'Below' -->
    <direction>Vertical</direction>
    <!-- 'Vertical' or 'Horizontal' -->
    <autoHide>no</autoHide>
    <hideDelay>300</hideDelay>
    <!-- in milliseconds (1000 = 1 second) -->
    <showDelay>300</showDelay>
    <!-- in milliseconds (1000 = 1 second) -->
    <moveButton>Middle</moveButton>
    <!-- 'Left', 'Middle', 'Right' -->
    </dock>
    <keyboard>
    <chainQuitKey>C-g</chainQuitKey>
    <!-- Keybindings for desktop switching -->
    <keybind key="C-A-Left">
    <action name="DesktopLeft"><dialog>no</dialog><wrap>no</wrap></action>
    </keybind>
    <keybind key="C-A-Right">
    <action name="DesktopRight"><dialog>no</dialog><wrap>no</wrap></action>
    </keybind>
    <keybind key="C-A-Up">
    <action name="DesktopUp"><dialog>no</dialog><wrap>no</wrap></action>
    </keybind>
    <keybind key="C-A-Down">
    <action name="DesktopDown"><dialog>no</dialog><wrap>no</wrap></action>
    </keybind>
    <keybind key="S-A-Left">
    <action name="SendToDesktopLeft"><dialog>no</dialog><wrap>no</wrap></action>
    </keybind>
    <keybind key="S-A-Right">
    <action name="SendToDesktopRight"><dialog>no</dialog><wrap>no</wrap></action>
    </keybind>
    <keybind key="S-A-Up">
    <action name="SendToDesktopUp"><dialog>no</dialog><wrap>no</wrap></action>
    </keybind>
    <keybind key="S-A-Down">
    <action name="SendToDesktopDown"><dialog>no</dialog><wrap>no</wrap></action>
    </keybind>
    <keybind key="W-F1">
    <action name="Desktop"><desktop>1</desktop></action>
    </keybind>
    <keybind key="W-F2">
    <action name="Desktop"><desktop>2</desktop></action>
    </keybind>
    <keybind key="W-F3">
    <action name="Desktop"><desktop>3</desktop></action>
    </keybind>
    <keybind key="W-F4">
    <action name="Desktop"><desktop>4</desktop></action>
    </keybind>
    <keybind key="W-d">
    <action name="ToggleShowDesktop"/>
    </keybind>
    <!-- Keybindings for windows -->
    <keybind key="A-F4">
    <action name="Close"/>
    </keybind>
    <keybind key="A-Escape">
    <action name="Lower"/>
    <action name="FocusToBottom"/>
    <action name="Unfocus"/>
    </keybind>
    <keybind key="A-space">
    <action name="ShowMenu"><menu>client-menu</menu></action>
    </keybind>
    <!-- Keybindings for window switching -->
    <keybind key="A-Tab">
    <action name="NextWindow"/>
    </keybind>
    <keybind key="A-S-Tab">
    <action name="PreviousWindow"/>
    </keybind>
    <keybind key="C-A-Tab">
    <action name="NextWindow">
    <panels>yes</panels><desktop>yes</desktop>
    </action>
    </keybind>
    <!-- Keybindings for running applications -->
    <keybind key="W-e">
    <action name="Execute">
    <startupnotify>
    <enabled>true</enabled>
    <name>Konqueror</name>
    </startupnotify>
    <command>kfmclient openProfile filemanagement</command>
    </action>
    </keybind>
    </keyboard>
    <mouse>
    <dragThreshold>8</dragThreshold>
    <!-- number of pixels the mouse must move before a drag begins -->
    <doubleClickTime>200</doubleClickTime>
    <!-- in milliseconds (1000 = 1 second) -->
    <screenEdgeWarpTime>400</screenEdgeWarpTime>
    <!-- Time before changing desktops when the pointer touches the edge of the
    screen while moving a window, in milliseconds (1000 = 1 second).
    Set this to 0 to disable warping -->
    <context name="Frame">
    <mousebind button="A-Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="A-Left" action="Click">
    <action name="Unshade"/>
    </mousebind>
    <mousebind button="A-Left" action="Drag">
    <action name="Move"/>
    </mousebind>
    <mousebind button="A-Right" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="Unshade"/>
    </mousebind>
    <mousebind button="A-Right" action="Drag">
    <action name="Resize"/>
    </mousebind>
    <mousebind button="A-Middle" action="Press">
    <action name="Lower"/>
    <action name="FocusToBottom"/>
    <action name="Unfocus"/>
    </mousebind>
    <mousebind button="A-Up" action="Click">
    <action name="DesktopPrevious"/>
    </mousebind>
    <mousebind button="A-Down" action="Click">
    <action name="DesktopNext"/>
    </mousebind>
    <mousebind button="C-A-Up" action="Click">
    <action name="DesktopPrevious"/>
    </mousebind>
    <mousebind button="C-A-Down" action="Click">
    <action name="DesktopNext"/>
    </mousebind>
    <mousebind button="A-S-Up" action="Click">
    <action name="SendToDesktopPrevious"/>
    </mousebind>
    <mousebind button="A-S-Down" action="Click">
    <action name="SendToDesktopNext"/>
    </mousebind>
    </context>
    <context name="Titlebar">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Left" action="Drag">
    <action name="Move"/>
    </mousebind>
    <mousebind button="Left" action="DoubleClick">
    <action name="ToggleMaximizeFull"/>
    </mousebind>
    <mousebind button="Middle" action="Press">
    <action name="Lower"/>
    <action name="FocusToBottom"/>
    <action name="Unfocus"/>
    </mousebind>
    <mousebind button="Up" action="Click">
    <action name="Shade"/>
    <action name="FocusToBottom"/>
    <action name="Unfocus"/>
    <action name="Lower"/>
    </mousebind>
    <mousebind button="Down" action="Click">
    <action name="Unshade"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Right" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="ShowMenu"><menu>client-menu</menu></action>
    </mousebind>
    </context>
    <context name="Top">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="Unshade"/>
    </mousebind>
    <mousebind button="Left" action="Drag">
    <action name="Resize"><edge>top</edge></action>
    </mousebind>
    </context>
    <context name="Left">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Left" action="Drag">
    <action name="Resize"><edge>left</edge></action>
    </mousebind>
    </context>
    <context name="Right">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Left" action="Drag">
    <action name="Resize"><edge>right</edge></action>
    </mousebind>
    </context>
    <context name="Bottom">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Left" action="Drag">
    <action name="Resize"><edge>bottom</edge></action>
    </mousebind>
    <mousebind button="Middle" action="Press">
    <action name="Lower"/>
    <action name="FocusToBottom"/>
    <action name="Unfocus"/>
    </mousebind>
    <mousebind button="Right" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="ShowMenu"><menu>client-menu</menu></action>
    </mousebind>
    </context>
    <context name="BLCorner">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Left" action="Drag">
    <action name="Resize"/>
    </mousebind>
    </context>
    <context name="BRCorner">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Left" action="Drag">
    <action name="Resize"/>
    </mousebind>
    </context>
    <context name="TLCorner">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="Unshade"/>
    </mousebind>
    <mousebind button="Left" action="Drag">
    <action name="Resize"/>
    </mousebind>
    </context>
    <context name="TRCorner">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="Unshade"/>
    </mousebind>
    <mousebind button="Left" action="Drag">
    <action name="Resize"/>
    </mousebind>
    </context>
    <context name="Client">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Middle" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Right" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    </context>
    <context name="Icon">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="Unshade"/>
    <action name="ShowMenu"><menu>client-menu</menu></action>
    </mousebind>
    <mousebind button="Right" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="ShowMenu"><menu>client-menu</menu></action>
    </mousebind>
    </context>
    <context name="AllDesktops">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="Unshade"/>
    </mousebind>
    <mousebind button="Left" action="Click">
    <action name="ToggleOmnipresent"/>
    </mousebind>
    </context>
    <context name="Shade">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Left" action="Click">
    <action name="ToggleShade"/>
    </mousebind>
    </context>
    <context name="Iconify">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Left" action="Click">
    <action name="Iconify"/>
    </mousebind>
    </context>
    <context name="Maximize">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="Unshade"/>
    </mousebind>
    <mousebind button="Middle" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="Unshade"/>
    </mousebind>
    <mousebind button="Right" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="Unshade"/>
    </mousebind>
    <mousebind button="Left" action="Click">
    <action name="ToggleMaximizeFull"/>
    </mousebind>
    <mousebind button="Middle" action="Click">
    <action name="ToggleMaximizeVert"/>
    </mousebind>
    <mousebind button="Right" action="Click">
    <action name="ToggleMaximizeHorz"/>
    </mousebind>
    </context>
    <context name="Close">
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    <action name="Unshade"/>
    </mousebind>
    <mousebind button="Left" action="Click">
    <action name="Close"/>
    </mousebind>
    </context>
    <context name="Desktop">
    <mousebind button="Up" action="Click">
    <action name="DesktopPrevious"/>
    </mousebind>
    <mousebind button="Down" action="Click">
    <action name="DesktopNext"/>
    </mousebind>
    <mousebind button="A-Up" action="Click">
    <action name="DesktopPrevious"/>
    </mousebind>
    <mousebind button="A-Down" action="Click">
    <action name="DesktopNext"/>
    </mousebind>
    <mousebind button="C-A-Up" action="Click">
    <action name="DesktopPrevious"/>
    </mousebind>
    <mousebind button="C-A-Down" action="Click">
    <action name="DesktopNext"/>
    </mousebind>
    <mousebind button="Left" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    <mousebind button="Right" action="Press">
    <action name="Focus"/>
    <action name="Raise"/>
    </mousebind>
    </context>
    <context name="Root">
    <!-- Menus -->
    <mousebind button="Middle" action="Press">
    <action name="ShowMenu"><menu>client-list-combined-menu</menu></action>
    </mousebind>
    <mousebind button="Right" action="Press">
    <action name="ShowMenu"><menu>root-menu</menu></action>
    </mousebind>
    </context>
    <context name="MoveResize">
    <mousebind button="Up" action="Click">
    <action name="DesktopPrevious"/>
    </mousebind>
    <mousebind button="Down" action="Click">
    <action name="DesktopNext"/>
    </mousebind>
    <mousebind button="A-Up" action="Click">
    <action name="DesktopPrevious"/>
    </mousebind>
    <mousebind button="A-Down" action="Click">
    <action name="DesktopNext"/>
    </mousebind>
    </context>
    </mouse>
    <menu>
    <!-- You can specify more than one menu file in here and they are all loaded,
    just don't make menu ids clash or, well, it'll be kind of pointless -->
    <!-- default menu file (or custom one in $HOME/.config/openbox/) -->
    <file>menu.xml</file>
    <hideDelay>200</hideDelay>
    <!-- if a press-release lasts longer than this setting (in milliseconds), the
    menu is hidden again -->
    <middle>no</middle>
    <!-- center submenus vertically about the parent entry -->
    <submenuShowDelay>100</submenuShowDelay>
    <!-- this one is easy, time to delay before showing a submenu after hovering
    over the parent entry -->
    <applicationIcons>yes</applicationIcons>
    <!-- controls if icons appear in the client-list-(combined-)menu -->
    <manageDesktops>yes</manageDesktops>
    <!-- show the manage desktops section in the client-list-(combined-)menu -->
    </menu>
    <applications>
    <!--
    # this is an example with comments through out. use these to make your
    # own rules, but without the comments of course.
    <application name="first element of window's WM_CLASS property (see xprop)"
    class="second element of window's WM_CLASS property (see xprop)"
    role="the window's WM_WINDOW_ROLE property (see xprop)"
    type="the window's _NET_WM_WINDOW_TYPE (if unspecified, then
    it is dialog for child windows)">
    # the name or the class can be set, or both. this is used to match
    # windows when they appear. role can optionally be set as well, to
    # further restrict your matches.
    # the name, class, and role use simple wildcard matching such as those
    # used by a shell. you can use * to match any characters and ? to match
    # any single character.
    # the type is one of: normal, dialog, splash, utility, menu, toolbar, dock,
    # or desktop
    # when multiple rules match a window, they will all be applied, in the
    # order that they appear in this list
    # each element can be left out or set to 'default' to specify to not
    # change that attribute of the window
    <decor>yes</decor>
    # enable or disable window decorations
    <shade>no</shade>
    # make the window shaded when it appears, or not
    <position force="no">
    # the position is only used if both an x and y coordinate are provided
    # (and not set to 'default')
    # when force is "yes", then the window will be placed here even if it
    # says you want it placed elsewhere. this is to override buggy
    # applications who refuse to behave
    <x>center</x>
    # a number like 50, or 'center' to center on screen. use a negative number
    # to start from the right (or bottom for <y>), ie -50 is 50 pixels from the
    # right edge (or bottom).
    <y>200</y>
    <monitor>1</monitor>
    # specifies the monitor in a xinerama setup.
    # 1 is the first head, or 'mouse' for wherever the mouse is
    </position>
    <focus>yes</focus>
    # if the window should try be given focus when it appears. if this is set
    # to yes it doesn't guarantee the window will be given focus. some
    # restrictions may apply, but Openbox will try to
    <desktop>1</desktop>
    # 1 is the first desktop, 'all' for all desktops
    <layer>normal</layer>
    # 'above', 'normal', or 'below'
    <iconic>no</iconic>
    # make the window iconified when it appears, or not
    <skip_pager>no</skip_pager>
    # asks to not be shown in pagers
    <skip_taskbar>no</skip_taskbar>
    # asks to not be shown in taskbars. window cycling actions will also
    # skip past such windows
    <fullscreen>yes</fullscreen>
    # make the window in fullscreen mode when it appears
    <maximized>true</maximized>
    # 'Horizontal', 'Vertical' or boolean (yes/no)
    </application>
    # end of the example
    -->
    </applications>
    </openbox_config>
    menu.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <openbox_menu xmlns="http://openbox.org/3.4/menu">
    <menu id="apps-accessories-menu" label="Accessories">
    <item label="Calculator">
    <action name="Execute">
    <command>gnome-calculator</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Character Map">
    <action name="Execute">
    <command>gnome-character-map</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Ark File Archiver">
    <action name="Execute">
    <command>ark</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    </menu>
    <menu id="apps-editors-menu" label="Editors">
    <item label="GVim">
    <action name="Execute">
    <command>gvim</command>
    <startupnotify>
    <enabled>yes</enabled>
    <wmclass>GVim</wmclass>
    </startupnotify>
    </action>
    </item>
    <item label="Emacs">
    <action name="Execute">
    <command>emacs</command>
    <startupnotify>
    <enabled>yes</enabled>
    <wmclass>Emacs</wmclass>
    </startupnotify>
    </action>
    </item>
    <item label="GEdit">
    <action name="Execute">
    <command>gedit</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Kate">
    <action name="Execute">
    <command>kate</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Kwrite">
    <action name="Execute">
    <command>kwrite</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    </menu>
    <menu id="apps-term-menu" label="Terminals">
    <item label="Rxvt Unicode">
    <action name="Execute">
    <command>urxvt</command>
    </action>
    </item>
    <item label="Gnome Terminal">
    <action name="Execute">
    <command>gnome-terminal</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Xfce Terminal">
    <action name="Execute">
    <command>xfce4-terminal</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Konsole">
    <action name="Execute">
    <command>konsole</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Xterm">
    <action name="Execute"><command>xterm</command></action>
    </item>
    </menu>
    <menu id="apps-net-menu" label="Internet">
    <item label="Firefox">
    <action name="Execute">
    <command>firefox</command>
    <startupnotify>
    <enabled>yes</enabled>
    <wmclass>Firefox</wmclass>
    </startupnotify>
    </action>
    </item>
    <item label="Opera">
    <action name="Execute">
    <command>opera</command>
    <startupnotify>
    <enabled>yes</enabled>
    <wmclass>Opera</wmclass>
    </startupnotify>
    </action>
    </item>
    <item label="Konqueror">
    <action name="Execute">
    <command>konqueror</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Epiphany">
    <action name="Execute">
    <command>epiphany</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Pidgin Instant Messenger">
    <action name="Execute">
    <command>pidgin</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Kopete Instant Messenger">
    <action name="Execute">
    <command>kopete</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="XChat">
    <action name="Execute">
    <command>xchat</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    </menu>
    <menu id="apps-office-menu" label="Office">
    <item label="OpenOffice Base">
    <action name="Execute">
    <command>ooffice -base</command>
    </action>
    </item>
    <item label="OpenOffice Calc">
    <action name="Execute">
    <command>ooffice -calc</command>
    </action>
    </item>
    <item label="OpenOffice Draw">
    <action name="Execute">
    <command>ooffice -draw</command>
    </action>
    </item>
    <item label="OpenOffice Impress">
    <action name="Execute">
    <command>ooffice -impress</command>
    </action>
    </item>
    <item label="OpenOffice Math">
    <action name="Execute">
    <command>ooffice -math</command>
    </action>
    </item>
    <item label="OpenOffice Printer Administration">
    <action name="Execute">
    <command>ooffice-printeradmin</command>
    </action>
    </item>
    <item label="OpenOffice Writer">
    <action name="Execute">
    <command>ooffice -writer</command>
    </action>
    </item>
    </menu>
    <menu id="apps-multimedia-menu" label="Multimedia">
    <item label="Amarok">
    <action name="Execute">
    <command>amarok</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Rhythmbox">
    <action name="Execute">
    <command>rhythmbox</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="K3b">
    <action name="Execute">
    <command>k3b</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="MPlayer">
    <action name="Execute">
    <command>gmplayer</command>
    <startupnotify>
    <enabled>yes</enabled>
    <wmclass>MPlayer</wmclass>
    </startupnotify>
    </action>
    </item>
    <item label="Totem">
    <action name="Execute">
    <command>totem</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    </menu>
    <menu id="apps-fileman-menu" label="File Managers">
    <item label="Nautilus">
    <action name="Execute">
    <command>nautilus --no-desktop --browser</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Thunar">
    <action name="Execute">
    <command>Thunar</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="KDE File Manager">
    <action name="Execute">
    <command>kfmclient openURL ~</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Rox">
    <action name="Execute">
    <command>rox</command>
    <startupnotify>
    <enabled>yes</enabled>
    <wmclass>ROX-Filer</wmclass>
    </startupnotify>
    </action>
    </item>
    <item label="PCMan File Manager">
    <action name="Execute">
    <command>pcmanfm</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    </menu>
    <menu id="apps-graphics-menu" label="Graphics">
    <item label="Gimp">
    <action name="Execute">
    <command>gimp</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Gwenview">
    <action name="Execute">
    <command>gwenview</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Dia Diagram Editor">
    <action name="Execute">
    <command>dia</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    <item label="Inkscape">
    <action name="Execute">
    <command>inkscape</command>
    <startupnotify>
    <enabled>yes</enabled>
    </startupnotify>
    </action>
    </item>
    </menu>
    <menu id="system-menu" label="System">
    <item label="Openbox Configuration Manager">
    <action name="Execute">
    <command>obconf</command>
    <startupnotify><enabled>yes</enabled></startupnotify>
    </action>
    </item>
    <item label="Gnome Control Center">
    <action name="Execute">
    <command>gnome-control-center</command>
    <startupnotify><enabled>yes</enabled></startupnotify>
    </action>
    </item>
    <item label="KDE Control Center">
    <action name="Execute">
    <command>kcontrol</command>
    <startupnotify><enabled>yes</enabled></startupnotify>
    </action>
    </item>
    <item label="Xfce Settings">
    <action name="Execute">
    <command>xfce-setting-show</command>
    <startupnotify><enabled>yes</enabled></startupnotify>
    </action>
    </item>
    <item label="Manage Cups Printers">
    <action name="Execute">
    <command>xdg-open http://localhost:631/</command>
    <startupnotify>
    <enabled>no</enabled>
    <icon>cups</icon>
    </startupnotify>
    </action>
    </item>
    <separator />
    <item label="Reconfigure Openbox">
    <action name="Reconfigure" />
    </item>
    <item label="Exit Openbox">
    <action name="Exit">
    <prompt>yes</prompt>
    </action>
    </item>
    </menu>
    <menu id="root-menu" label="Openbox 3">
    <separator label="Applications" />
    <menu id="apps-accessories-menu"/>
    <menu id="apps-editors-menu"/>
    <menu id="apps-graphics-menu"/>
    <menu id="apps-net-menu"/>
    <menu id="apps-office-menu"/>
    <menu id="apps-multimedia-menu"/>
    <menu id="apps-term-menu"/>
    <menu id="apps-fileman-menu"/>
    <separator label="System" />
    <menu id="system-menu"/>
    <separator />
    <item label="Log Out">
    <action name="SessionLogout">
    <prompt>yes</prompt>
    </action>
    </item>
    </menu>
    </openbox_menu>
    autostart.sh
    # This shell script is run before Openbox launches.
    # Environment variables set here are passed to the Openbox session.
    # Set a background color
    BG=""
    if which hsetroot >/dev/null; then
    BG=hsetroot
    else
    if which esetroot >/dev/null; then
    BG=esetroot
    else
    if which xsetroot >/dev/null; then
    BG=xsetroot
    fi
    fi
    fi
    test -z $BG || $BG -solid "#303030"
    # D-bus
    if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
    eval `dbus-launch --sh-syntax --exit-with-session`
    fi
    # Make GTK apps look and behave how they were set up in the gnome config tools
    if test -x /usr/libexec/gnome-settings-daemon >/dev/null; then
    /usr/libexec/gnome-settings-daemon &
    elif which gnome-settings-daemon >/dev/null; then
    gnome-settings-daemon &
    # Make GTK apps look and behave how they were set up in the XFCE config tools
    elif which xfce-mcs-manager >/dev/null; then
    xfce-mcs-manager n &
    fi
    # Preload stuff for KDE apps
    if which start_kdeinit >/dev/null; then
    LD_BIND_NOW=true start_kdeinit --new-startup +kcminit_startup &
    fi
    # Run XDG autostart things. By default don't run anything desktop-specific
    # See xdg-autostart --help more info
    DESKTOP_ENV=""
    if which /usr/lib/openbox/xdg-autostart >/dev/null; then
    /usr/lib/openbox/xdg-autostart $DESKTOP_ENV
    fi
    pypanel &
    eval `cat $HOME/.fehbg` &
    setxkbmap se
    conky
    I don´t know really what info you need to help me but please let me know what you need and I will get it for you.
    I want my Openbox back
    /Neuwerld
    Last edited by neuwerld (2009-03-25 17:35:59)

    neuwerld wrote:
    Ohh thanks guys!
    It worked as a charm, and thanks Brisbin33 for the autostart.sh tip.
    So the thing that caused my whole system not to work as it should was that I forgot to put a "&" after conky?
    haha that´s kinda anoying I have been sitting and looking through like a milllion files looking for the answer
    But again, really thanks!
    /Neuwerld
    that little "&" sends the conky process to the background freeing up the current process (your autostart.sh script) to finish doing what it's doing so you can move on to running openbox itself.  with this in mind, it should be obvious why keeping conky in the foreground would cause problems.
    also, replacing it with (sleep 1 && conky) & means... wait a second, when that's done successfully (&&) run conky, and put all of that () to the background.  that way openbox comes up immediatly and only a second later you've got your panel and monitor.
    all this after .xinitrc and before openbox

  • After installing OS X Server Bonjour printer doesn't show up

    I just recently installed OS X Server 4.0.3.  Before I installed it I could see the printer as a Bonjour printer from the Mac Pro and the 4 other Macs on the network.  After installing OS X Server on the Mac Pro it cannot see the Bonjour printer.  All of the other Macs still can.
    The printer was listed in the Printers & Scanners configuration, but since it wasn't working I deleted it to try and set it up again.  But now it doesn't show up the in the Printers and Scanners configuration?
    Does this have anything to do with OS X Server?  Is a port being blocked?
    Why isn't the printer even showing up?  I have tried connecting the printer to the DSL modem and to the Airport.  Neither worked.  The other Macs have not lost access.
    I've tried resetting the printer, made sure the drivers are up to date.  Currently I have to use the Bonjour printing because OKI Data has not fixed TCP/IP (hardwired) printing with Yosemite.
    Thanks,
    David.

    Now that you've turned off File Vault try resetting the printer system: OS X Mavericks: Reset the printing system - Apple.
    Also I wouldn't hurt to Boot into the Recovery volume (boot with the Command + R keys held down), select Disk Utility and repair both the disk permissions and disk.  Reboot normally afterward.

  • [Solved] Gnome 3.8 - doesn't show end session dialog shutdown.

    Hi, After my last update, when i try to shutdown by gnome menu, the 'end session dialog' display doesn't shows, and gnome-shell restarts. The same with command 'gnome-session-quit --power-off'. If i try the second time, gnome crash and all extensions are disabled. After that, if i try another time, the system go in shutdown without show me end session dialog.
    The packages upgraded are:
    lib32-sqlite-3.8.0.1-1-x86_64.pkg.tar.xz
    lib32-fontconfig-2.10.95-1-x86_64.pkg.tar.xz
    libpng12-1.2.50-3-x86_64.pkg.tar.xz
    gucharmap-3.8.2-2-x86_64.pkg.tar.xz
    grilo-plugins-0.2.9-1-x86_64.pkg.tar.xz
    grilo-0.2.6-1-x86_64.pkg.tar.xz
    gnome-shell-extensions-3.8.3.1-2-any.pkg.tar.xz
    lib32-glibc-2.18-3-x86_64.pkg.tar.xz
    lib32-cairo-1.12.16-1-x86_64.pkg.tar.xz
    lib32-mesa-9.2.0-1-x86_64.pkg.tar.xz
    lib32-llvm-libs-3.3-1-x86_64.pkg.tar.xz
    lib32-elfutils-0.155-2-x86_64.pkg.tar.xz
    polkit-gnome-0.105-2-x86_64.pkg.tar.xz
    openshadinglanguage-1.3.3-4-x86_64.pkg.tar.xz
    openimageio-1.2.1-1-x86_64.pkg.tar.xz
    mlt-0.9.0-4-x86_64.pkg.tar.xz
    calibre-1.1.0-1-x86_64.pkg.tar.xz
    svga-dri-9.2.0-1-x86_64.pkg.tar.xz
    sqlite-3.8.0.1-1-x86_64.pkg.tar.xz
    poppler-glib-0.24.1-1-x86_64.pkg.tar.xz
    lirc-utils-1:0.9.0-58-x86_64.pkg.tar.xz
    libreoffice-writer-4.1.1-2-x86_64.pkg.tar.xz
    libreoffice-math-4.1.1-2-x86_64.pkg.tar.xz
    libreoffice-impress-4.1.1-2-x86_64.pkg.tar.xz
    libreoffice-gnome-4.1.1-2-x86_64.pkg.tar.xz
    libreoffice-draw-4.1.1-2-x86_64.pkg.tar.xz
    libreoffice-calc-4.1.1-2-x86_64.pkg.tar.xz
    libreoffice-base-4.1.1-2-x86_64.pkg.tar.xz
    libreoffice-common-4.1.1-2-x86_64.pkg.tar.xz
    libreoffice-it-4.1.1-1-any.pkg.tar.xz
    gst-plugins-good-1.0.10-1-x86_64.pkg.tar.xz
    gst-plugins-base-1.0.10-1-x86_64.pkg.tar.xz
    gst-plugins-bad-1.0.10-1-x86_64.pkg.tar.xz
    gst-plugins-base-libs-1.0.10-1-x86_64.pkg.tar.xz
    gstreamer-1.0.10-1-x86_64.pkg.tar.xz
    graphviz-2.32.0-1-x86_64.pkg.tar.xz
    gnutls-3.2.4-1-x86_64.pkg.tar.xz
    gnome-documents-3.8.4-1-x86_64.pkg.tar.xz
    gnome-online-accounts-3.8.3-1-x86_64.pkg.tar.xz
    gtk3-3.8.4-1-x86_64.pkg.tar.xz
    ghostscript-9.10-1-x86_64.pkg.tar.xz
    gdb-7.6.1-1-x86_64.pkg.tar.xz
    cups-filters-1.0.37-1-x86_64.pkg.tar.xz
    chromium-29.0.1547.62-1-x86_64.pkg.tar.xz
    poppler-qt4-0.24.1-1-x86_64.pkg.tar.xz
    poppler-0.24.1-1-x86_64.pkg.tar.xz
    imagemagick-6.8.6.9-1-x86_64.pkg.tar.xz
    cairo-1.12.16-1-x86_64.pkg.tar.xz
    mesa-9.2.0-1-x86_64.pkg.tar.xz
    elfutils-0.155-1-x86_64.pkg.tar.xz
    wayland-1.2.1-1-x86_64.pkg.tar.xz
    fontconfig-2.10.95-1-x86_64.pkg.tar.xz
    reiserfsprogs-3.6.24-1-x86_64.pkg.tar.xz
    pacman-mirrorlist-20130830-1-any.pkg.tar.xz
    linux-headers-3.10.10-1-x86_64.pkg.tar.xz
    linux-3.10.10-1-x86_64.pkg.tar.xz
    groff-1.22.2-5-x86_64.pkg.tar.xz
    glibc-2.18-3-x86_64.pkg.tar.xz
    I tried to reinstall gnome and gnome-extra but the issue remain.
    thanks in advance!
    Last edited by Angelsoul (2013-09-03 16:14:01)

    Other informations: (journalctl)
    set 03 16:24:07 dellst gnome-session[661]: (gnome-shell:737): GLib-GIO-CRITICAL **: g_task_return_error: assertion `error != NULL' failed
    set 03 16:24:07 dellst gnome-session[661]: (gnome-shell:737): GLib-GIO-CRITICAL **: g_task_propagate_pointer: assertion `task->result_set == TRUE' failed
    set 03 16:24:07 dellst gnome-session[661]: **
    set 03 16:24:07 dellst gnome-session[661]: Gtk:ERROR:gtkicontheme.c:4302:gtk_icon_info_load_symbolic_finish: assertion failed: (pixbuf != NULL)
    set 03 16:24:07 dellst gnome-session[661]: gnome-session[661]: WARNING: Unable to open shell end session dialog
    set 03 16:24:07 dellst gnome-session[661]: WARNING: Unable to open shell end session dialog
    set 03 16:24:07 dellst gnome-session[661]: Entering running state
    set 03 16:24:07 dellst gnome-session[661]: gnome-session[661]: WARNING: Application 'gnome-shell.desktop' killed by signal 6
    set 03 16:24:07 dellst gnome-session[661]: WARNING: Application 'gnome-shell.desktop' killed by signal 6
    set 03 16:24:07 dellst gnome-session[661]: ** Message: applet now removed from the notification area
    set 03 16:24:09 dellst gnome-session[661]: JS LOG: GNOME Shell started at Tue Sep 03 2013 16:24:09 GMT+0200 (CEST)

  • Hi, i installed ios 5 for my iphone 4 and the camera function on lock screen was on the first few days , now it doesn't show the lock screen . is there any change i can do . Pls help me to solve the issue.

    hi, i installed ios 5 for my iphone 4 and the camera function on lock screen was on the first few days , now it doesn't show the lock screen . is there any change i can do . Pls help me to solve the issue.

    nishaadp wrote:
    ... it stucks with the apple logo ,  nothing works. Is anything i can do?
    See Here for
    Frozen or unresponsive iPhone

  • My caller id is not working on iphone 5 - it beeps but doesn't show who is calling or let me click over

    I have recently had my iphone 5 not show who is calling on call waiting.  The phone beeps but doesn't show the number / per son that is calling, won't let me click over and won't show who it was in my call history.  Help very annoying.

    1st go into your settings then tap phone to see if call waiting is turned on or off. If call waiting isOFF turn it ON. You can use also Apple article HT 4515. I would contact my wireless carrier reguarding the caller id not showing up and also with help reguarding your call waiting as well
    Hope this helps

  • Task manager on windows server 2008 doesn't show the memory from newly installed 2nd CPU

    Hi,
    We have a dual processor dell power edge t410 running windows server 2008 (64-bit), standard edition. I have recently added a 2nd xeon x5560 quad-core processor (first one is also x5560 with 32GB (4x8) memory) and 16GB ram (4x4). Seems like the new CPU is
    recognized in BIOS, Dell's server admin app and task manager shows 16 vertical boxes (hyper threading is on both cpus) under Performance->CPU Usage History and these boxes show processor load spread relatively evenly across all threads. On the other hand
    the additional memory for this CPU is visible in the BIOS, Dell server admin but not in the task manager, which still shows the 32gb under performance->physical memory. Rammap also shows only 32GB.. Currently running proprietary processes that along with
    the metafile and windows own ring up nearly 30GB, which in turn causes system latency for GUI and apps, as if the additional 16GB are not there...
    So the questions are these:
    1) does anybody know why the added memory doesn't show up in the task manager / rammap?
    2) if the new memory doesn't show up, does this mean that Windows does not use it (which should be impossible if the CPU is utilized, unless I am wrong about windows using the cpu..)?
    Thank you,
    - Kiril

    Thanks for the reply Ravikumar,
    Unfortunately this solution is inapplicable to my version of the OS as it is 64-bit and not 32-bit. Do you have any other ideas?
    Best,
    - Kiril
    Yes, PAE((Physical Address Extension) is supported only on 32-bit versions of the
    Windows, operating system 64-bit versions of Windows do not support PAE. For information about device driver and system requirements for 64-bit versions of Windows, see
    64-bit System Design. The Address Windowing Extension (AWE) API is supported on 32-bit systems. It is also supported on x64 systems for both native and Wow64 applications.
    Useful link for Address Windowing Extensions is:http://msdn.microsoft.com/en-us/library/windows/desktop/aa366527(v=vs.85).aspx
    If the above info does not help you, please contact dell as suggested by
    Shaon Shan.
    Regards, Ravikumar P

  • Conky doesn't show (XFCE 4.8) and keeps asking password? [SOLVED]

    I've finally got XFCE4.8 all dressed up the way I want it to look.
    Only problem left is Conky:
    1.It simply doesn't show on the desktop.
    2.It keeps asking for a password?
    If i start conky via terminal i get this:
    =========================================================
    [sven@myhost ~]$ conky
    Conky: desktop window (1400003) is subwindow of root window (15d)
    Conky: window type - override
    Conky: drawing to created window (0x2000001)
    Conky: drawing to double buffer
    Password:
    =========================================================
    My .conkyrc looks like this:
    =========================================================
    own_window yes
    own_window_colour 0F0D0D
    use_spacer right
    use_xft yes
    # Update interval in seconds
    update_interval 1
    # This is the number of times Conky will update before quitting.
    # Set to zero to run forever.
    total_run_times 0
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    own_window_transparent no
    own_window_type override
    own_window_hints undecorate,below,skip_taskbar,sticky)
    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes
    #colour
    default_color 808080
    own_window_colour 333333
    #font
    use_xft yes
    xftfont Droid Sans:pixelsize=11
    # Stippled borders?
    stippled_borders 0
    # border margins
    # border width
    border_width 1
    alignment top_left
    gap_x 5
    gap_y 5
    # --- Colours, Sizes, Fonts & Margins --- #
    minimum_size 1356 0
    #stippled_borders 3
    #border_inner_margin 9
    # --- Text --- #
    draw_outline no
    draw_borders no
    uppercase no
    draw_shades no
    # --- if-up_strictness --- #
    if_up_strictness link
    TEXT
    ${color}CPU0: ${color ffffff} ${execi 5 sensors | grep -A 0 'Core 0' | cut -c15-21} | ${color}CPU1: ${color ffffff} ${execi 5 sensors | grep -A 0 'Core 1' | cut -c15-21} | ${color}HDD: ${color ffffff} ${execi 60 sudo hddtemp /dev/sda | grep -A 0 '/dev/sda' | cut -c24-29} | ${color}RAM: ${color ffffff} $mem | ${color} Total Down: ${color ffffff} ${if_up eth0}${totaldown eth0}${else}${if_up wlan0}${totaldown wlan0}${endif}${endif} | ${color}Total Up: ${color ffffff}${if_up eth0}${totalup eth0}${else}${if_up wlan0}${totalup wlan0}${endif}${endif} | ${color} Down Speed: ${color ffffff} ${if_up eth0}${downspeed eth0}${else}${if_up wlan0}${downspeed wlan0}${endif}${endif}| ${color}Up Speed: ${color ffffff} ${if_up eth0}${upspeed eth0}${else}${if_up wlan0}${upspeed wlan0}${endif}${endif} ${alignr} ${color} Battery: ${color ffffff} ${battery_percent}% ${color} | ${color ffffff}${time %A} ${time %e} ${time %B} ${time %G} - ${time %H:%M:%S}
    =========================================================
    Any help is appreciated!
    Sven
    Last edited by killerturtle (2011-06-29 15:30:40)

    jasonwryan wrote:You should look at using visudo to make this script run with the hddtemp call...
    Ok, thx; I'll look into that.
    Now still to solve the first problem....

  • While playing games like NFS and CounterStrike my macbook pro it does connects to the hotspot by any device either a Windows laptop, but doesn't show or connect to the server (LAN) created by windows player.Or neither connects to the server that i created

    While playing games like NFS and CounterStrike my macbook pro it does connects to the hotspot by any device either a Windows laptop, but doesn't show or connect to the server (LAN) created by windows player. Or, any other devices doesn't  connects to the LAN server that i created in the Game.     
    Could any one help me please.

    Please do not post more than about 50 lines of console logs or output from an Application crash at a time. No one can make it through those.
    If you had a kernel panic, those are Full of good information and should be posted in their entirety. They are stored, and can be read back and posted using this article:
    How to log a kernel panic

  • Oracle Application Server Control Console doesn't show any servers

    Hi there.
    I'm configuring the Identity Manager, and in the process of doing so, I've to user tthe OASCC to do some operations.
    I've discovered how to launch the OASCC and I can access it. The problem is that after configuring the ias_admin password the main menu doesn't show information.
    Here is the link to the print screen with the main menu: [http://picasaweb.google.pt/r.vilhs/Oracle#5276306768949033090]
    Am I missing something?
    Regards,
    Ricardo Vilhena

    I have the same problem and I checked my target.xml file - it was in place and it contained both target records - with port number 18200 - I tried to acces this address, but it gave 404 error - actaully - this is better than nothing - beacause it indicates that someone is listening to this port, but it has no default page to display. Well - documentation states that 18200 is Oracle Management Agent port but I have not yet figured out what to expect from it. In my installation I have observed:
    1) I have running app server 10.3.1 on port 7777, but the weolcome page doesn't display the login portlet for logging in this server - so - I have not logged into it.
    2) I have problems accessing app server 10.2.1 on port 15001, I guess it is down and I have tried to start it from start menu entries - without result. I guess - this is very important server - it contains the forms.
    But weill - at present I cann't see anu connection between these two server and the entries in the target page on port 18100, I guess - that this page should display both server, but in the post was said only entry for on port... Maybe management agent is for boths app servers (and not separate agent for each server?)?

  • HP 5550 web server doesn't show all required tabs

    Good afternoon!
    I have an issue with web server on hp 5550 Laserjet. Everything was good, but after reboot, it doesn't show all tabs such as "Information", "Setting", "Networking". It shows only "Home" and "Networking"...
    Do someone know how to fix this issue?
    Thanks in advance!
    Any help will be appreciated!
    Igro

    Your best bet would be to try Rapidweaver: www.realmacsoftware.com
    Best,
    Andrew
    I am not very into this stuff (can't write HTML),
    do you might have a suggestion for an other
    WebsiteBuilder?
    We can't afford GoLive (which was very cool in the
    early days built by CyberStudio) nor have I time to
    learn or buy the complex Dreamweaver.

Maybe you are looking for