No loopback interface in the default rc.conf + gateway question SOLVED

I finally got around to updating my rc.conf to the current version and two questions occur to me.  I should probably have noticed them before now, but I didn't. My bad.
(1) There is no "lo" in the model interfaces staza.  I have never run a system on which ifconfig did not show a "lo".  Do we omit it now for a reason which it would be helpful for me to understand?
(2) In the model we also have :
gateway="default gw 192.168.0.1"
ROUTES=(!gateway)
Why would one declare default gateway, only to disable it?  Putting it more generally, why declare any route, only to disable it, except perhaps as a temporary measure?
TIA
Last edited by perseus (2010-04-25 15:39:47)

Many thanks.
Two answers within 5 minutes of posting. I love Arch.
Have you noticed how googling almost linux problem (not distro-specific), will have first page answers to be found in these forums?

Similar Messages

  • In the FF31 new tab, can we turn the new Search field OFF and not display it as the default? (Repeating this question; still hoping for an answer.)

    I want every new tab to come up empty. Can this be done in FF31? Thanks.

    Ed already replied to your previous thread. Don't create more than one thread for each issue.
    Continue here: https://support.mozilla.org/en-US/questions/1012091

  • Feature request: extra Include directive in default pacman.conf

    Since arch's move to systemd, cluster administration requires less and less use of sed.  In particular, systemctl, timedatectl, /etc/sysctl.d, /etc/modules-load.d, /etc/hostname, /etc/vconsole.conf, etc. make scripting configuration changes both simpler more robust than the old approach of editing multi-purpose files such as /etc/rc.conf.
    An exception to this trend is pacman.conf, which has non-trivial default contents that almost certainly needs to be customized (e.g., to enable multilib and local repositories).  These changes would be much simpler if the default pacman.conf included a line such as:
    Include = /etc/pacman.d/conf/*.conf
    Currently my scripts use sed to insert this line at the end of the [options] section.  (Unfortunately "Include = /etc/pacman.d/*.conf" doesn't work because there's sometimes a gpg.conf file in /etc/pacman.d, but maybe that could be fixed.)
    I don't know if the forum is the right place for feature requests, but I wanted to get people's reactions.  If people think it's a good idea I can add it as a feature request to the bug tracker.
    There are several other pieces of low-hanging fruit where I'd like to see arch decrease the complexity scripting configuration (e.g., an unattended pacman-key --populate and easier customization of mkinitcpio.conf), but I figured I'd start with the simplest and gauge people's reactions.

    aweb wrote:I don't know if the forum is the right place for feature requests, but I wanted to get people's reactions.  If people think it's a good idea I can add it as a feature request to the bug tracker.
    It isn't... best to place the feedback in flyspray so it will be sure to get to the peeps that need to see it.  Welcome to Arch.

  • Adding Loopback interface for branch routers

    Hi,
    I have several branch routers that i want to add a loopback interface for managament purposes. I am currently using ospf as my routing protocol.
    Will the rotuer-id be updated accordingly and will there be any effect on my ospf routing?
    Thanks.

    Hi,
    No, the router id will not change unless you clear the OSPF process. So, this will cause an outage to your environment and should be done during a maintenance window.
    from the ospf document:
    OSPF automatically prefers a loopback interface over any other kind, and it chooses the highest IP address among all loopback interfaces. If there are no loopback interfaces present, the highest IP address in the router is chosen. The OSPF cannot be directed to use any particular interface. Once the router ID is elected, it does not change unless the OSPF process restarts or the router is reloaded.
    http://www.cisco.com/c/en/us/support/docs/ip/open-shortest-path-first-ospf/23862-duplicate-router-id-ospf.html
    HTH

  • Default rc.conf daemons

    Just curious what network netfs and crond do ? They are loaded at startup in the daemons array of the default rc.conf and i am trying to reduce my startup processes and trying to determine if i need them.
    Thanks

    carick wrote:Just curious what network netfs and crond do ? They are loaded at startup in the daemons array of the default rc.conf and i am trying to reduce my startup processes and trying to determine if i need them.
    Thanks
    if you're trying to cut down on boot up time, putting '@' in front of each daemon will load them in the background. when i did that, it took about 10 seconds off my boot up time.

  • Where do I change the default directory for print to file?

    Currently the file is placed in the Mozilla Firefox directory under the Programs files directory. I want to change the default directory.

    This is not solved as I do not know where to change the default directory.

  • What are the right DNS records to host more than one site on OSX Server (ML). My conf in Server.app looks right but one of my sites lands on the default server. Any suggestion?

    I started using OSX Server on Mountain Lion a few days ago and it looks promising.
    I do however measure my ignorance in DNS matters...
    I defined two websites in addition to the the Default Server, so I have three names to deal with.
    For argument's sake
    - www.main.com is the default site
    - www.sitea.com is the first site
    - www.siteb.com is the second site
    I define a virtual host for www.sitea.com and another for www.siteb.com
    The resulting apache conf is what I would expect, I am pretty sure it is correct.
    So I modified my DNS entries (they were A records) to point to my new OSX Server.
    My result is:
    - www.main.com shows the default site
    - www.sitea.com shows the first site
    - www.siteb.com shows...the default site
    Any ideas?
    Cheers

    Thanks MrHoffman!
    My problem ended up being a name but not in the DNS!...In Apache.
    Your information allowed me to rule out possibilities and zoom in to the culprit faster.
    I just report here the conclusion hoping it can help someone else.
    When I installed OSX Server last week, I had in mind to principally run siteb.
    During the initial install, this is what I must have entered and then forgot about it.
    Then I defined my virtual hosts sitea and siteb and realised my machine was called siteb and changed its name to main to avaid a name collision. At which time I remember OSX Server telling me that changing the name could have consequences...But it apparently went ok, and it did except for one little thing.
    The consequence was this:
    in the main configuration file /Library/Server/Web/Config/apache2/http_server_app.conf the ServerName directive had remained siteb (instead of main). I manually updated it with TextEdit (could do vi from bash, its the same) and replaced siteb with main.
    There is a way to detect it.
    In Server.app, there is a "logs" panel, which displays all sorts of logs for everything including the websites.
    Each website's logs are presented as "access" and "error" logs. The information was there, but I could not see it because the viewing window in remarkably small for so much information in raw text...
    web logs are actually written to only two files in /var/log/apache2 (error.log and access.log)
    I openned two bash windows and run tail -f on error.log in one and tail -f access.log in the other.
    When I started the web service, apache threw a warning stating from mod_ssl saying that the certificate did not match the serve name...I the certificate was what I expected, I checked http_server_app.conf and found the ServerName directive that was not changed when I renamed my server...
    Easily fixed when its found, but it can take a while to find.
    BTW, I was using A DNS records for and it works, but I find your method of using CNAME records documents the administrator's intent better than with A records; I started to do the same. (A records a useful though, they can run a domain across multiple machines)
    Cheers mate!

  • Setting The Default Route in a Jumpstart Install with Multiple Interfaces

    Greetings,
    I'm performing a Jumpstart install on a SPARC v240 server, which has multiple network interfaces. I'm trying to configure all of the interfaces as part of the Jumpstart setup. However, Jumpstart doesn't like the default route that I'm supplying. If I add the default_route parameter anywhere but under the first interface, Jumpstart complains that the default route is missing (by making me add it after it dumps out to the suninstall screens. If I add the default route under the first interface, Jumpstart dumps me to the suninstall screen which says that the route could not be added.
    What am I doing wrong ? Am I trying to get Jumpstart to do something that it won't do ?
    Here is my sysidcfg file. The file shown below will cause Jumpstart to dump to the suninstall screen, which will indicate that the route cannot be added:
    Please wait while the system information is loaded... /
    Please wait while the system is configured with your settings...
    The route provided could not be added at this time. If you wish to accept the
    route provided, press 'Accept' and the address will be added for reboot,
    otherwise press 'Cancel' and provide another address.
    1. Accept
    2. Cancel
    Enter the number corresponding to your choice [1]
    Here is the sysidcfg file:
    name_service=NONE
    network_interface=bge0
    {hostname=conwe125
    ip_address=10.15.8.122
    netmask=255.255.0.0
    default_route=158.73.175.254
    protocol_ipv6=no}
    network_interface=bge1
    {ip_address=10.15.9.122
    netmask=255.255.0.0
    protocol_ipv6=no}
    network_interface=bge3
    {ip_address=158.73.175.117
    netmask=255.255.0.0
    protocol_ipv6=no}
    network_interface=ce0
    {ip_address=10.16.0.208
    netmask=255.255.0.0
    protocol_ipv6=no}
    network_interface=ce3
    {ip_address=158.73.175.118
    netmask=255.255.255.0
    protocol_ipv6=no}
    root_password=5Z5XTytD2Eddo
    security_policy=NONE
    terminal=vt100
    system_locale=en_US.ISO8859-1
    timezone=US/Eastern
    timeserver=localhost
    Thanks In Advance,
    Chris Hanrahan

    That sysidcfg seems a bit odd anyway, have you by any chance put the different interfaces of your jumpstart server into it? Normally you won't need to specify a default router since the jumpstart will figure it out anyway.. Does your jumpstart server have an interface on each network you want to jumpstart?
    7/M.

  • Default implementations of JPDK V2 classes and interfaces - is the source code?

    Hi
    Is the source code for all the default implementations of the JPDK interfaces, renderers etc. available somewhere?
    Regards
    Harry

    Please find jpdk samples sources for jpdk implementation under src.zip inside PDK.zip
    In addition, one can many articles related to PDK under articles folder.

  • An error occurred while releasing interface Loopback Pseudo-Interface 1 : The system cannot find the file specified

    Hello All
    I have TMG server installed on windows 2008 R2 64x  with 3 network adaptor (Lan,Premiter and External), but for some reason the clients on premiter Network cant get ip addresses from dhcp which located on LAN. i have done 
    ipconfig /release
    ipconfig /flushdns
    ipconfig /renew 
    but no success...... also uninstalled premiter network adaptor and reinstall network adaptor still no success.....getting this error.
    An error occurred while releasing interface Loopback Pseudo-Interface 1 : The system cannot find the file specified
    by the way My Lab is based on Hyper-v
    any help would be much greatfull
    thanks

    Hi,
    Have you checked the TMG logging?
    You could try the troubleshooting steps in the thread below.
    http://answers.microsoft.com/en-us/windows/forum/windows_vista-networking/an-error-occurred-while-releasing-interface/4261cacb-e924-4d74-a349-4f3b898c27a9
    Best Regards,
    Joyce
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Im having midi problems, im using a TASCAM US-2000 interface and for some reason logic wont pic it up even though its saying its the default??? help!!! i am running the latest an newest iMac...

    need help working this out..

    "It won't pick it up even though it says it's the default..."
    You checked this how? Where does it "say" it is the default?

  • How to change the Default Password on AP1131AG

    Hi all :
    I tried to change the default password Cisco to other by command line but the password cannot work out.
    The command line I used are as below :
    AP#conf t
    Enter configuration commands, one per line.  End with CNTL/Z.
    AP(config)#enable pass
    AP(config)#enable password 4dMINO123 ?
    LINE    <cr>
    AP(config)#enable password 4dMINO123
    AP(config)#exit
    AP#wr
    *Mar  1 04:39:23.902: %SYS-5-CONFIG_I: Configured from console by console
    Building configuration...
    [OK]
    AP#exit
    This still cannot cahnge. Below I do again below commands :
    AP(config)#enable secret
    % Incomplete command.
    AP(config)#enable secret ?
      0      Specifies an UNENCRYPTED password will follow
      5      Specifies an ENCRYPTED secret will follow
      LINE   The UNENCRYPTED (cleartext) 'enable' secret
      level  Set exec level password
    AP(config)#enable secret 5
    % Incomplete command.
    AP(config)#enable secret 5 ?
      LINE  The ENCRYPTED 'enable' secret string
    AP(config)#enable secret 5 LINE
    ERROR: The secret you entered is not a valid encrypted secret.
    To enter an UNENCRYPTED secret, do not specify type 5 encryption.
    When you properly enter an UNENCRYPTED secret, it will be encrypted.
    AP(config)#enable secret LINE
    AP(config)#exit
    AP#
    *Mar  1 04:40:53.021: %SYS-5-CONFIG_I: Configured from console by console
    AP#
    AP#exit
    After that when I access with >en again as below with correct password of 4dMINO123 and it always fails as below :
    Can anybody help to provide correct way of changing the default password of Cisco to another password? Many thanks!
    AP con0 is now available
    Press RETURN to get started.
    AP>en
    Password:
    Password:
    Password:
    % Bad secrets
    AP>en 0
    AP>en 5
    % No password set
    AP>en 15
    Password:
    Password:
    % Password:  timeout expired!
    Password:
    % Bad secrets
    AP>
    AP>
    AP>en
    Password:
    Password:
    Password:
    % Bad secrets
    thanks and best regards,
    tangsuan

    Hi, I have even the worst problem,
    that seems probably to to be never asked on Internet. After quick learning how to reset this creapy device, I can't get by no means the enable password in default config for this box, having read everywhere from Cisco guide through community pages to Google pages.. NOWHERE.
    Question is : what else except Cisco, cisco, root, password... can solve this stupid issue?!? I expect some guru from responsible AP BU to answer this with definite answer, or someone from Cisco having mercy with me to contact such guy(s).
    Here is my desperate situation :
    Nothing from this page helped :
    http://www.cisco.com/en/US/partner/products/hw/wireless/ps430/products_password_recovery09186a00800949d0.shtml#reset_ap_newer
    Situation after hard reset:
    Xmodem file system is available.
    flashfs[0]: 26 files, 8 directories
    flashfs[0]: 0 orphaned files, 0 orphaned directories
    flashfs[0]: Total bytes: 15998976
    flashfs[0]: Bytes used: 6879232
    flashfs[0]: Bytes available: 9119744
    flashfs[0]: flashfs fsck took 43 seconds.
    Base ethernet MAC Address: 00:22:55:9f:fc:a0
    Initializing ethernet port 0...
    Reset ethernet port 0...
    Reset done!
    ethernet link up, 100 mbps, full-duplex
    Ethernet port 0 initialized: link is up
    button pressed for 1 seconds
    process_config_recovery: set IP address and config to default 10.0.0.1
    Loading "flash:/c1130-rcvk9w8-mx/c1130-rcvk9w8-mx"...#########################################################################################################################################################################
    File "flash:/c1130-rcvk9w8-mx/c1130-rcvk9w8-mx" uncompressed and installed, entry point: 0x3000
    executing...
                  Restricted Rights Legend
    Use, duplication, or disclosure by the Government is
    subject to restrictions as set forth in subparagraph
    (c) of the Commercial Computer Software - Restricted
    Rights clause at FAR sec. 52.227-19 and subparagraph
    (c) (1) (ii) of the Rights in Technical Data and Computer
    Software clause at DFARS sec. 252.227-7013.
               cisco Systems, Inc.
               170 West Tasman Drive
               San Jose, California 95134-1706
    Cisco IOS Software, C1130 Software (C1130-RCVK9W8-M), Version 12.3(11)JX1, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2006 by Cisco Systems, Inc.
    Compiled Mon 17-Jul-06 11:38 by alnguyen
    Image text-base: 0x00003000, data-base: 0x0035E440
    Initializing flashfs...
    flashfs[1]: 26 files, 8 directories
    flashfs[1]: 0 orphaned files, 0 orphaned directories
    flashfs[1]: Total bytes: 15998976
    flashfs[1]: Bytes used: 6879232
    flashfs[1]: Bytes available: 9119744
    flashfs[1]: flashfs fsck took 6 seconds.
    flashfs[1]: Initialization complete....done Initializing flashfs.
    cisco AIR-LAP1131AG-E-K9   (PowerPCElvis) processor (revision A0) with 24566K/8192K bytes of memory.
    Processor board ID FCZ1238Q0HK
    PowerPCElvis CPU at 262Mhz, revision number 0x0950
    Last reset from power-on
    LWAPP image version 3.0.51.0
    1 FastEthernet interface
    32K bytes of flash-simulated non-volatile configuration memory.
    Base ethernet MAC Address: 00:22:55:9F:FC:A0
    Part Number                          : 73-8962-14
    PCA Assembly Number                  : 800-24818-13
    PCA Revision Number                  : A0
    PCB Serial Number                    : FOC12354426
    Top Assembly Part Number             : 800-29144-03
    Top Assembly Serial Number           : FCZ1238Q0HK
    Top Revision Number                  : A0
    Product/Model Number                 : AIR-LAP1131AG-E-K9 
    Press RETURN to get started!
    *Mar  1 00:00:08.354: %CDP_PD-4-POWER_OK: Full power - AC_ADAPDOWN: Line protocol on Interface FastEthernet0, changed state to up
    Press>en
    Password:
    Password:
    Password:
    *Mar  1 00:00:27.393: %LWAPP-5-CHANGED: LWAPP changed state to DISCOVERY
    % Bad secrets
    Press>en
    Password:
    Password:
    Password:
    % Bad secrets
    Press>
    *Mar  1 00:00:36.530: %DHCP-6-ADDRESS_ASSIGN: Interface FastEthernet0 assigned DHCP address 192.168.1.2, mask 255.255.255.0, hostname Press
    Press>en
    Password:
    Password:
    Press>sho ver
    Cisco IOS Software, C1130 Software (C1130-RCVK9W8-M), Version 12.3(11)JX1, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2006 by Cisco Systems, Inc.
    Compiled Mon 17-Jul-06 11:38 by alnguyen
    ROM: Bootstrap program is C1130 boot loader
    BOOTLDR: C1130 Boot Loader (C1130-BOOT-M) Version 12.3(8)JEA, RELEASE SOFTWARE (fc2)
    Press uptime is 17 minutes
    System returned to ROM by power-on
    System image file is "flash:/c1130-rcvk9w8-mx/c1130-rcvk9w8-mx"
    cisco AIR-LAP1131AG-E-K9   (PowerPCElvis) processor (revision A0) with 24566K/8192K bytes of memory.
    Processor board ID FCZ1238Q0HK
    PowerPCElvis CPU at 262Mhz, revision number 0x0950
    Last reset from power-on
    LWAPP image version 3.0.51.0
    1 FastEthernet interface
    32K bytes of flash-simulated non-volatile configuration memory.
    Base ethernet MAC Address: 00:22:55:9F:FC:A0
    Part Number                          : 73-8962-14
    PCA Assembly Number                  : 800-24818-13
    PCA Revision Number                  : A0
    PCB Serial Number                    : FOC12354426
    Top Assembly Part Number             : 800-29144-03
    Top Assembly Serial Number           : FCZ1238Q0HK
    Top Revision Number                  : A0
    Product/Model Number                 : AIR-LAP1131AG-E-K9 
    Configuration register is 0xF
    Press>

  • Timesten replication with multiple interfaces sharing the same hostname

    Hi,
    we have in our environment two Sun T2000 nodes, running SunOS 5.10 and hosting a TT server currently in Release 7.0.5.9.0, replicated between each other.
    I would like to have some more information on the behavior of the replication w.r.t. network reliability when using two interfaces associated to the same hostname, the one used to define the replication element.
    To make an example we have our nodes sharing this common /etc/hosts elements:
    151.98.227.5 TBMAS10df2 TBMAS10df2-10 TBMAS10df2-ttrep
    151.98.226.5 TBMAS10df2 TBMAS10df2-01 TBMAS10df2-ttrep
    151.98.227.4 TBMAS9df1 TBMAS9df1-10 TBMAS9df1-ttrep
    151.98.226.4 TBMAS9df1 TBMAS9df1-01 TBMAS9df1-ttrep
    with the following element defined for replication:
    ALTER REPLICATION REPLSCHEME
    ADD ELEMENT HDF_GNP_CDPN_1 TABLE HDF_GNP_CDPN
    CHECK CONFLICTS BY ROW TIMESTAMP
    COLUMN ConflictResTimeStamp
    REPORT TO '/sn/sps/HDF620/datamodel/tt41dataConflict.rpt'
    MASTER tt41data ON "TBMAS9df1-ttrep"
    SUBSCRIBER tt41data ON "TBMAS10df2-ttrep"
    RETURN RECEIPT BY REQUEST
    ADD ELEMENT HDF_GNP_CDPN_2 TABLE HDF_GNP_CDPN
    CHECK CONFLICTS BY ROW TIMESTAMP
    COLUMN ConflictResTimeStamp
    REPORT TO '/sn/sps/HDF620/datamodel/tt41dataConflict.rpt'
    MASTER tt41data ON "TBMAS10df2-ttrep"
    SUBSCRIBER tt41data ON "TBMAS9df1-ttrep"
    RETURN RECEIPT BY REQUEST;
    On this subject moving from 6.0.x to 7.0.x there has been some changes I would like to better understand.
    6.0.x reported in the documentation for Unix systems:
    If a host contains multiple network interfaces (with different IP addresses),
    TimesTen replication tries to connect to the IP addresses in the same order as
    returned by the gethostbyname call. It will try to connect using the first address;
    if a connection cannot be established, it tries the remaining addresses in order
    until a connection is established.
    Now On Solaris I don't know how to let gethostbyname return more than one interface (the documention notes at this point:
    If you have multiple network interface cards (NICs), be sure that “multi
    on” is specified in the /etc/host.conf file. Otherwise, gethostbyname will not
    return multiple addresses).
    But I understand this could be valid for Linux based systems not for Solaris.
    Now if I properly understand the above, how was the 6.0.x able to realize the first interface in the list (using the same -ttrep hostname) was down and use the other, if gethostbyname was reporting only a single entry ?
    Once upgraded to 7.0.x we realized the ADD ROUTE option was added to teach TT how to use different interfaces associated to the same hostname. In our environment we did not include this clause, but still the replication was working fine regardless of which interface we were bringing down.
    My both questions in the end lead to the same doubt on which is the algorithm used by TT to reach the replicated node w.r.t. entries in the /etc/hosts.
    Looking at the nodes I can see that by default both routes are being used:
    TBMAS10df2:/-# netstat -an|grep "151.98.227."
    151.98.225.104.45312 151.98.227.4.14000 1049792 0 1049800 0 ESTABLISHED
    151.98.227.5.14005 151.98.227.4.47307 1049792 0 1049800 0 ESTABLISHED
    151.98.227.5.14005 151.98.227.4.48230 1049792 0 1049800 0 ESTABLISHED
    151.98.227.5.46050 151.98.227.4.14005 1049792 0 1049800 0 ESTABLISHED
    TBMAS10df2:/-# netstat -an|grep "151.98.226."
    151.98.226.5.14000 151.98.226.4.47699 1049792 0 1049800 0 ESTABLISHED
    151.98.226.5.14005 151.98.226.4.47308 1049792 0 1049800 0 ESTABLISHED
    151.98.226.5.44949 151.98.226.4.14005 1049792 0 1049800 0 ESTABLISHED
    Tried to trace with ttTraceMon but once I brought down one of the interfaces did not see any reaction on either node, if you have some info it would be really appreciated !
    Cheers,
    Mike

    Hi Chris,
    Thanks for the reply, I have few more queries on this.
    1.Using the ROUTE CLAUSE we can use multiple IPs using priority level set, so that if highest priority level set in thr ROUTE clause for the IP is not active it will fall back to the next level priority 2 set IP. But cant we use ROUTE clause to use the multiple route IPs for replication simultaneously?
    2. can we execute multiple schema for the same DSN and replication scheme but with different replication route IPs?
    for example:
    At present on my system, I have a replication scheme running for a specific DSN with stand alone Master-Subscriber mechanism, with a specific route IP through VLAN-xxx for replication.
    Now I want to create and start another replication scheme for the same DSN and replication mechanism with a different VLAN-yyy route IP to be used for replication in parallel to the existing replication scheme. without making any changes to the pre-existing replication scheme.
    for the above scenarios, will there be any specific changes respective to the different replication schema mechanism ie., Active Standby and Standalone Master Subscriber mechanism etc.,
    If so what are the steps. like how we need to change the existing schema?
    Thanks In advance.
    Naveen

  • [SOLVED] Gnome 3.2, gdm only show the default wallpaper

    Hi all,
    I just upgrade to gnome 3.2 on 2 machines, for the first one I got a glib2 from AUR so it do not work first (it's now solve) but for the second one I still can't login into gnome.
    Gdm only show the default wallpaper and a cursor.
    Here is the gdm log :
    gnome-session[22008]: DEBUG(+): Enabling debugging
    gnome-session[22008]: DEBUG(+): GsmXsmpServer: SESSION_MANAGER=local/jlaunay-arch-laptop:@/tmp/.ICE-unix/22008,unix/jlaunay-arch-laptop:/tmp/.ICE-unix/22008
    gnome-session[22008]: DEBUG(+): GsmShell: Not connected to the shell
    gnome-session[22008]: DEBUG(+): GsmManager: setting client store 0x752b20
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Adding handler 1: signum=4 (nil)
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Registering for 4 signals
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Adding handler 2: signum=7 (nil)
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Registering for 7 signals
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Adding handler 3: signum=11 (nil)
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Registering for 11 signals
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Adding handler 4: signum=6 (nil)
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Registering for 6 signals
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Adding handler 5: signum=5 (nil)
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Registering for 5 signals
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Adding handler 6: signum=8 0x41bed0
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Registering for 8 signals
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Adding handler 7: signum=1 0x41bed0
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Registering for 1 signals
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Adding handler 8: signum=10 0x41bed0
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Registering for 10 signals
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Adding handler 9: signum=15 0x41bed0
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Registering for 15 signals
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Adding handler 10: signum=2 0x41bed0
    gnome-session[22008]: DEBUG(+): GdmSignalHandler: Registering for 2 signals
    gnome-session[22008]: DEBUG(+): fill: *** Getting session 'gdm-shell'
    gnome-session[22008]: DEBUG(+): fill: *** Looking if /var/lib/gdm/.config/gnome-session/sessions/gdm-shell.session is a valid session file
    gnome-session[22008]: DEBUG(+): Cannot use session '/var/lib/gdm/.config/gnome-session/sessions/gdm-shell.session': non-existing or invalid file.
    gnome-session[22008]: DEBUG(+): fill: *** Looking if /etc/xdg/gnome-session/sessions/gdm-shell.session is a valid session file
    gnome-session[22008]: DEBUG(+): Cannot use session '/etc/xdg/gnome-session/sessions/gdm-shell.session': non-existing or invalid file.
    gnome-session[22008]: DEBUG(+): fill: *** Looking if /usr/share/gdm/greeter/gnome-session/sessions/gdm-shell.session is a valid session file
    gnome-session[22008]: DEBUG(+): Cannot use session '/usr/share/gdm/greeter/gnome-session/sessions/gdm-shell.session': non-existing or invalid file.
    gnome-session[22008]: DEBUG(+): fill: *** Looking if /usr/share/gnome-session/sessions/gdm-shell.session is a valid session file
    gnome-session[22008]: DEBUG(+): fill: *** Launching helper 'bash -c 'gnome-shell --help | grep -q gdm-mode && /usr/lib/gnome-session/gnome-session-check-accelerated'' to know if session is runnable
    gnome-session[22008]: DEBUG(+): fill: *** Checking required components and providers
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking for file 'gnome-shell.desktop'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.config/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/opt/kde/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.local/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/opt/kde/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: found in XDG dirs: '/usr/share/gdm/greeter/applications/gnome-shell.desktop'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking for file 'gnome-settings-daemon.desktop'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.config/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/opt/kde/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.local/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/opt/kde/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: found in XDG dirs: '/etc/xdg/autostart/gnome-settings-daemon.desktop'
    gnome-session[22008]: DEBUG(+): fill: *** Done checking required components and providers
    gnome-session[22008]: DEBUG(+): fill: *** Adding required components
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking for file 'gnome-shell.desktop'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.config/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/opt/kde/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.local/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/opt/kde/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: found in XDG dirs: '/usr/share/gdm/greeter/applications/gnome-shell.desktop'
    gnome-session[22008]: DEBUG(+): GsmManager: read /usr/share/gdm/greeter/applications/gnome-shell.desktop
    gnome-session[22008]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App1 to store
    gnome-session[22008]: DEBUG(+): GsmManager: adding required app gnome-shell.desktop
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking for file 'gnome-settings-daemon.desktop'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.config/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/opt/kde/share/gnome/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.local/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: Looking in '/opt/kde/share/applications'
    gnome-session[22008]: DEBUG(+): GsmUtil: found in XDG dirs: '/etc/xdg/autostart/gnome-settings-daemon.desktop'
    gnome-session[22008]: DEBUG(+): GsmManager: read /etc/xdg/autostart/gnome-settings-daemon.desktop
    gnome-session[22008]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App2 to store
    gnome-session[22008]: DEBUG(+): GsmManager: adding required app gnome-settings-daemon.desktop
    gnome-session[22008]: DEBUG(+): fill: *** Done adding required components
    gnome-session[22008]: DEBUG(+): fill: *** Adding default providers
    gnome-session[22008]: DEBUG(+): fill: *** Done adding default providers
    gnome-session[22008]: DEBUG(+): GsmManager: GSM starting to manage
    gnome-session[22008]: DEBUG(+): GsmManager: App startup summary
    gnome-session[22008]: DEBUG(+): GsmManager: Phase INITIALIZATION
    gnome-session[22008]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App2 app-id:gnome-settings-daemon.desktop is-disabled:0 is-conditionally-disabled:0
    gnome-session[22008]: DEBUG(+): GsmManager: Phase WINDOW_MANAGER
    gnome-session[22008]: DEBUG(+): GsmManager: Phase PANEL
    gnome-session[22008]: DEBUG(+): GsmManager: Phase DESKTOP
    gnome-session[22008]: DEBUG(+): GsmManager: Phase APPLICATION
    gnome-session[22008]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App1 app-id:gnome-shell.desktop is-disabled:0 is-conditionally-disabled:0
    gnome-session[22008]: DEBUG(+): GsmManager: starting phase INITIALIZATION
    gnome-session[22008]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App2'
    gnome-session[22008]: DEBUG(+): Starting app: /org/gnome/SessionManager/App2
    gnome-session[22008]: DEBUG(+): GsmAutostartApp: starting gnome-settings-daemon.desktop: command=/usr/lib/gnome-settings-daemon/gnome-settings-daemon startup-id=1014e74dbf7c28cef3131765353783344800000220080001
    gnome-session[22008]: DEBUG(+): GsmAutostartApp: started pid:22018
    ** (gnome-settings-daemon:22018): WARNING **: Failed to connect context: OK
    gnome-session[22008]: DEBUG(+): GsmManager: RegisterClient
    gnome-session[22008]: DEBUG(+): GsmManager: Adding new client 1014e74dbf7c28cef3131765353888394100000220080002 to session
    gnome-session[22008]: DEBUG(+): uid = 120
    gnome-session[22008]: DEBUG(+): pid = 22033
    gnome-session[22008]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/Client1 to store
    gnome-session[22008]: DEBUG(+): GsmManager: Client added: /org/gnome/SessionManager/Client1
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client1 interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=RegisterClient
    gnome-session[22008]: DEBUG(+): GsmManager: RegisterClient 1014e74dbf7c28cef3131765353783344800000220080001
    gnome-session[22008]: DEBUG(+): GsmManager: Adding new client 1014e74dbf7c28cef3131765353783344800000220080001 to session
    gnome-session[22008]: DEBUG(+): uid = 120
    gnome-session[22008]: DEBUG(+): pid = 22018
    gnome-session[22008]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/Client2 to store
    gnome-session[22008]: DEBUG(+): GsmManager: Client added: /org/gnome/SessionManager/Client2
    gnome-session[22008]: DEBUG(+): App gnome-settings-daemon.desktop registered
    gnome-session[22008]: DEBUG(+): GsmManager: ending phase INITIALIZATION
    gnome-session[22008]: DEBUG(+): GsmManager: starting phase WINDOW_MANAGER
    gnome-session[22008]: DEBUG(+): GsmManager: ending phase WINDOW_MANAGER
    gnome-session[22008]: DEBUG(+): GsmManager: starting phase PANEL
    gnome-session[22008]: DEBUG(+): GsmManager: ending phase PANEL
    gnome-session[22008]: DEBUG(+): GsmManager: starting phase DESKTOP
    gnome-session[22008]: DEBUG(+): GsmManager: ending phase DESKTOP
    gnome-session[22008]: DEBUG(+): GsmManager: starting phase APPLICATION
    gnome-session[22008]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App1'
    gnome-session[22008]: DEBUG(+): Starting app: /org/gnome/SessionManager/App1
    gnome-session[22008]: DEBUG(+): GsmAutostartApp: starting gnome-shell.desktop: command=gnome-shell --gdm-mode startup-id=1014e74dbf7c28cef3131765353783171200000220080000
    gnome-session[22008]: DEBUG(+): GsmAutostartApp: started pid:22035
    gnome-session[22008]: DEBUG(+): GsmManager: ending phase APPLICATION
    gnome-session[22008]: DEBUG(+): GsmManager: starting phase RUNNING
    gnome-session[22008]: DEBUG(+): GsmPresence: adding idle watch
    gnome-session[22008]: DEBUG(+): GSIdleMonitor: creating new alarm for positive transition wait=600000
    gnome-session[22008]: DEBUG(+): GSIdleMonitor: creating new alarm for negative transition wait=599999
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client2 interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client2 interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmShell: Connected to the shell
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmXsmpServer: accept_ice_connection()
    gnome-session[22008]: DEBUG(+): GsmXsmpServer: auth_ice_connection()
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: Setting up new connection
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: New client '0x7a83f0 []'
    gnome-session[22008]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/Client3 to store
    gnome-session[22008]: DEBUG(+): GsmManager: Client added: /org/gnome/SessionManager/Client3
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: Initializing client 0x7a83f0 []
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: Client '0x7a83f0 []' received RegisterClient(1014e74dbf7c28cef3131765353783171200000220080000)
    gnome-session[22008]: DEBUG(+): GsmManager: Adding new client 1014e74dbf7c28cef3131765353783171200000220080000 to session
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: Sending RegisterClientReply to '0x7a83f0 [1014e74dbf7c28cef3131765353783171200000220080000]'
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: Set properties from client '0x7a83f0 [1014e74dbf7c28cef3131765353783171200000220080000]'
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: Program = 'gnome-shell'
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: UserID = 'gdm'
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: RestartStyleHint = 0
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: ProcessID = '22035'
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: CurrentDirectory = '/var/lib/gdm'
    gnome-session[22008]: DEBUG(+): GsmXSMPClient: _GSM_Priority = 20
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=Get
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=Get
    (gnome-shell:22035): GdmGreeter-DEBUG: GdmGreeterClient: connecting to address: unix:abstract=/tmp/gdm-greeter-BFEwWchQ,guid=de70f6c3e78db9ace2cecbde000025dc
    (gnome-shell:22035): GdmGreeter-DEBUG: GdmGreeterClient: Calling GetDisplayId
    (gnome-shell:22035): GdmGreeter-DEBUG: GdmGreeterClient: Creating proxy for /org/gnome/DisplayManager/Display1
    (gnome-shell:22035): GdmGreeter-DEBUG: GdmGreeterClient: Calling StartConversation
    (gnome-shell:22035): GdmGreeter-DEBUG: "/usr/share/xsessions/openbox-kde.desktop" is hidden or contains non-executable TryExec program
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    (gnome-shell:22035): Gvc-WARNING **: Failed to connect context: OK
    JS LOG: GNOME Shell started at Mon Oct 03 2011 16:52:19 GMT+0200 (CEST)
    (gnome-shell:22035): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=Ready
    (gnome-shell:22035): GdmGreeter-DEBUG: GdmGreeterClient: Received Ready (gdm-password)
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): Searching for 4194307 in 4194307,4194308
    gnome-session[22008]: DEBUG(+): Watch 1 fired, idle time = 600002
    gnome-session[22008]: DEBUG(+): GsmPresence: setting idle: 1
    gnome-session[22008]: DEBUG(+): Updating ConsoleKit idle status: 1
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): Searching for 4194308 in 4194307,4194308
    gnome-session[22008]: DEBUG(+): Watch 1 fired, idle time = 150
    gnome-session[22008]: DEBUG(+): GsmPresence: setting idle: 0
    gnome-session[22008]: DEBUG(+): Updating ConsoleKit idle status: 0
    The value for the SHELL variable was not found the /etc/shells file
    This incident has been reported.
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): Searching for 4194307 in 4194307,4194308
    gnome-session[22008]: DEBUG(+): Watch 1 fired, idle time = 600000
    gnome-session[22008]: DEBUG(+): GsmPresence: setting idle: 1
    gnome-session[22008]: DEBUG(+): Updating ConsoleKit idle status: 1
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): Searching for 4194308 in 4194307,4194308
    gnome-session[22008]: DEBUG(+): Watch 1 fired, idle time = 154
    gnome-session[22008]: DEBUG(+): GsmPresence: setting idle: 0
    gnome-session[22008]: DEBUG(+): Updating ConsoleKit idle status: 0
    The value for the SHELL variable was not found the /etc/shells file
    This incident has been reported.
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): Searching for 4194307 in 4194307,4194308
    gnome-session[22008]: DEBUG(+): Watch 1 fired, idle time = 600003
    gnome-session[22008]: DEBUG(+): GsmPresence: setting idle: 1
    gnome-session[22008]: DEBUG(+): Updating ConsoleKit idle status: 1
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): Searching for 4194308 in 4194307,4194308
    gnome-session[22008]: DEBUG(+): Watch 1 fired, idle time = 177
    gnome-session[22008]: DEBUG(+): GsmPresence: setting idle: 0
    gnome-session[22008]: DEBUG(+): Updating ConsoleKit idle status: 0
    The value for the SHELL variable was not found the /etc/shells file
    This incident has been reported.
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[22008]: DEBUG(+): Searching for 4194307 in 4194307,4194308
    gnome-session[22008]: DEBUG(+): Watch 1 fired, idle time = 600003
    gnome-session[22008]: DEBUG(+): GsmPresence: setting idle: 1
    gnome-session[22008]: DEBUG(+): Updating ConsoleKit idle status: 1
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): Searching for 4194308 in 4194307,4194308
    gnome-session[22008]: DEBUG(+): Watch 1 fired, idle time = 203
    gnome-session[22008]: DEBUG(+): GsmPresence: setting idle: 0
    gnome-session[22008]: DEBUG(+): Updating ConsoleKit idle status: 0
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    The value for the SHELL variable was not found the /etc/shells file
    This incident has been reported.
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[22008]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    When I try with gdm in fallback mode using :
    ln -s /usr/share/gnome-session/sessions/gdm-fallback.session /var/lib/gdm/.config/gnome-session/sessions/gdm-shell.session
    Gdm is working but when I try to login in gnome it freeze.
    Here is the xsessions error file :
    (gnome-settings-daemon:2006): keybindings-plugin-WARNING **: Le raccourci clavier (screenreader) n'est pas complet
    (gnome-settings-daemon:2006): keybindings-plugin-WARNING **: Le raccourci clavier (magnifier) n'est pas complet
    (gnome-settings-daemon:2006): keybindings-plugin-WARNING **: Le raccourci clavier (onscreenkeyboard) n'est pas complet
    WARNING: no socket to connect to
    common-plugin-Message: checking whether we have a device for 4: yes
    common-plugin-Message: checking whether we have a device for 5: yes
    common-plugin-Message: checking whether we have a device for 6: yes
    common-plugin-Message: checking whether we have a device for 7: yes
    common-plugin-Message: checking whether we have a device for 8: yes
    common-plugin-Message: checking whether we have a device for 9: yes
    common-plugin-Message: checking whether we have a device for 10: yes
    common-plugin-Message: checking whether we have a device for 11: yes
    common-plugin-Message: checking whether we have a device for 12: yes
    Failed to play sound: File or data not found
    ** Message: applet now removed from the notification area
    JS LOG: GNOME Shell started at Mon Oct 03 2011 18:30:21 GMT+0200 (CEST)
    ** Message: applet now embedded in the notification area
    JS ERROR: !!! Exception was: Error: Error invoking TelepathyGLib.prepare_finish: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
    JS ERROR: !!! lineNumber = '0'
    JS ERROR: !!! fileName = '"gjs_throw"'
    JS ERROR: !!! stack = '"("Error invoking TelepathyGLib.prepare_finish: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.")@gjs_throw:0
    ([object _private_TelepathyGLib_AccountManager],[object _private_Gio_SimpleAsyncResult])@/usr/share/gnome-shell/js/ui/telepathyClient.js:371
    JS ERROR: !!! message = '"Error invoking TelepathyGLib.prepare_finish: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken."'
    (gnome-shell:2057): folks-WARNING **: Error preparing Backend 'telepathy': Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
    gnome-session[1984]: WARNING: Detected that screensaver has left the bus
    gnome-session[1984]: WARNING: Application 'gnome-settings-daemon.desktop' killed by signal
    gnome-session[1984]: WARNING: Application 'gnome-shell.desktop' killed by signal
    gnome-session[1984]: GConf-WARNING: Got Disconnected from DBus
    if needed here is my pacman -Qm :
    advancecomp 1.15-6
    aespipe 2.4c-1
    aldm 0.5-1
    android-notifier-desktop 0.5.1-2
    android-sdk r10-2
    armitage-svn 322-1
    asoundconf 20090121-1
    aufs2-util 20110314-1
    btsco 0.5-2
    bug-buddy 2.32.0-1
    cairo-tee 1.10.2-1
    canon-cque 2.0.0-1
    ccrypt-gui-integrations 1.0-3
    cimon 0.4.1-2
    climage 0.4-3
    cloog-ppl 0.15.10-2
    codecs64 20071007-1
    comgt 0.32-2
    cphix 0.7-1
    creepy-git 20110718-1
    cryptkeeper 0.9.5-1
    cunit 2.1.2-2
    db4.5 4.5.20-4
    decibel-audio-player2 2.20-2
    derpity-gtk-theme 20110522-1
    djl_py2 1.2.20-1
    docbucket 0.1-1
    drwright 3.0.2-1
    dukto-svn 103-2
    eikon-icon-theme 1.0-1
    evolution-webcal 2.32.0-1
    exactimage-svn 1808-1
    faenza-icon-theme 0.9.2-1
    fbcmd 1.3-2
    fekete-icon-theme 3.3-1
    firefox-firesheep 20110930-1
    flickrapi 1.4.2-2
    foobnix-git 20110718-1
    fortune-mod-kaamelott 1-1
    freearc 0.666-2
    gecko-sdk 1.9.2.18-1
    gen-init-cpio 2.6.36-1
    gimp-ultimate-web-gradients 1-1
    gnome-mag 0.16.3-1
    gnome-schedule 2.1.3-1
    gnome-web-photo 0.10.2-1
    gnumeric-git 20110528-1
    goffice-git 20110718-1
    gok 2.30.1-1
    gpick-svn 140-1
    groonga 1.2.5-1
    gtk-engine-unico 74-4
    gtkglarea 2.0.1-1
    gwibber3 3.1.0-3.2
    g-xiria 2.0-1
    hamster-applet 2.91.2-1
    histwi 0.6.7-1
    hotot 0.9.7%7Ehg1017-1
    intrace 1.4.3-1
    ipod-convenience 0.11-1
    iron-bin 13.0.800.0-1
    izulu 0.2.5.3-3
    jumanji-new_webgtk-git 20110718-1
    juststyle 1.3.3-2
    ktranslator 0.4-3
    lib32-gmp4 4.3.2-1
    lib32-libidn 1.19-1
    lib32-libjpeg6 6b-4
    lib32-libpng12 1.2.43-1
    lib32-libtiff4 4_3.9.5-2
    lib32-nas 1.9.2-2
    lib32-openssl-compatibility 0.9.8-4
    lib32-sdl_gfx 2.0.22-4
    lib32-sdl_mixer 1.2.11-3
    lib32-smpeg 0.4.4-6
    libawl-git 20110613-1
    libfcppt-git 20110613-1
    libkeybinder 0.2.2-1
    libmizuiro-git 20110613-1
    libopensync-svn 6211-1
    libsge-git 20110613-1
    libsyncml-svn 1363-1
    libtiff4 3.9.5-1
    libwbxml 0.10.8-1
    linux-wbfs-manager 0.1.12-1
    logmein-hamachi 2.0.1.15-1
    mailnag 20110726-1
    markdown 1.0.1-5
    mate-icon-theme 0.0.0-2
    mate-icon-theme-symbolic 0.0.0-1
    metasploit-svn 13099-1
    myman 0.7.0-3
    mysql-jdbc 5.1.17-1
    namebench 1.3.1-3
    netbeans-php 7.0.0-1
    ninvaders 0.1.1-2
    omoma 0.2-1
    opencv-old 2.1.0-3
    open-syobon 0.99_1-1
    openxencenter rev227_20100510-4
    osm-gps-map 0.7.3-1
    padevchooser 0.9.3-6
    paman 0.9.4-5
    par 1.52-2
    pavumeter 0.9.3-3
    pencil-svn 259-1
    perl-crypt-rc4 2.02-1
    perl-digest-perl-md5 1.8-1
    perl-goo-canvas 0.06-1
    perl-gtk2-imageview 0.05-2
    perl-ole-storage-lite 0.19-1
    perl-proc-processtable 0.45-2
    perl-spreadsheet-parseexcel 0.59-1
    perl-switch 2.16-2
    perl-text-csv-xs 0.82-1
    perl-unicode-map 0.112-2
    perl-xls2csv 1.06-2
    prey-tracker 0.5.3-1
    probability0 1.05-4
    psmouse-elantech v6-2
    pxtools 0.0.20-1
    pyexiv2 0.3.0-3
    python25 2.5.5-1
    python2-tweepy-git 20110627-1
    python-audiere 0.2-1
    python-bugbuddy 2.32.0-6
    python-dbutils 1.0-2
    python-keybinder 0.2.2-4
    python-osmgpsmap 0.7.3-4
    python-whoosh 1.8.4-1
    qataki 0.05-0
    qttvdb 0.3.0-1
    quazip 0.4.1-1
    quicksynergy 0.9.0-1
    rarcrack 0.2-1
    rdesktop-svn 1609-1
    realtimeconfigquickscan-hg 18-1
    ruby1.8 1.8.7_p352-1
    ruby-hmac 0.4.0-1
    serieswatcher 0.1.3-1
    shocco-git 20110504-1
    shutter 0.86.4-1
    sikuli-ide 1.0rc2-2
    smb-browser-svn 5-1
    soapui 3.6.1-1
    solarus-git 20110802-1
    spark 2.5.8-1
    sql-power-architect 1.0.6-1
    sslstrip 0.9-1
    sux 1.0.1_6-1
    talend-mdm 4.2.2-1
    talend-profiler 4.2.2-2
    talend-studio 4.2.2-2
    tcp_wrappers 7.6-12
    texwiz 2.0.1-1
    tftpgui 1.1-1
    the-incredible-machine-1 1.0-5
    the-incredible-machine-2 1.0-4
    tksqlite 0.5.8-3
    tktable 2.10-2
    tktreectrl 2.3.2-1
    trizen 20110630-1
    ttf-exljbris 1.1-2
    ttf-gentium-basic 1.1-3
    txt2html 2.51-1
    unittestpp 1.4-1
    universalindentgui 1.1.0-2
    vim-jquery 0.4-2
    vim-perl 0.11-2
    vim-python 3.0.6-3
    vim-spamassassin 3.2-1
    visual-regexp 3.0-3
    vkget 0.2-1
    wdt 2.6.6-ppa0
    webcamstudio-svn 152-1
    whatweb-git 20110718-1
    winexe 1.00-1
    wsdlpull 1.24-1
    wv2-svn 45-1
    wwwsqldesigner 126-1
    xcursor-gruppled-lite 1.1-1
    Thanks in advance for your help.
    Last edited by jlaunay (2011-10-03 22:51:28)

    Solved.
    I had to enable KMS
    https://wiki.archlinux.org/index.php/In … Setting.29
    and remove my xorg.conf file.

  • How do I change the default timezone for user calendars?

    The default timezone for new calendars is "America/New_York." How
    do I change the default timezone to my local timezone?
    To change the default timezone, perform the following steps:
    <P>
    <OL>
    <LI>Go to the bin/data/default_user_prefs.xml
    file.
    <P>
    <LI>In this file, change the values for the
    "icsTimeZone" and
    "ceSingleCalendarTZID"
    parameters. The default settings will appear something as follows:
    <P>
    <P>
    Changing these two parameters will change the timezone in the Calendar user
    interface.
    <P>
    <LI>In addition, go to the
    bin/config/ics.conf file.
    <P>
    <LI>In this file, change the value for
    calstore.default.timezoneID
    <P>
    Changing this value will enable the server to pick up the new timezones.
    </OL>
    <P>
    <B>Please note:</B> The values you enter for the above parameters must be valid
    timezones defined in the
    bin/data/timezone.ics
    file.
    <B>Related Technote:</B>
    <P>
    20000330-7: iCS 2.x: How do you change the
    default timezone in JavaScript?<BR>
    see article 4322

    Colin,
    You may substitute any text you like for the "Placeholder Text", as it is called, in Pages. Click on the existing placeholder text and type something more to your liking. Do this in as many places as your particular template of interest demands. Then, Format > Advanced > Define as Placeholder Text. Lastly, File > Save as Template.
    Now that you have defined a Custom Template to your liking, you can go to Pages Preferences and under the General tab's first section, define the new custom template as your default for each new document.
    Regards,
    Jerry

Maybe you are looking for

  • Problem with roles in CRM 5.0 PC-UI

    Hi everybody! I have a problem with CRM 5.0 PC-UI. When I have user profile SAP_ALL, BSP's are showed correctly. When I'm using restricted profile (for example role 'Account manager'), for some BSP's I'm receiving this error: Exception Class CX_CRM_B

  • Acrobat 9 security & copies

    I have put password protection on a parent file (in my computer). I have made copies of the file to CD. The problem is that the file is protected as it should be in my computer but the CD copies will not accept password protection. I put in the passw

  • How to attach files in a mail from user4s PC in a Portal aplication

    Hello, I am trying to send a mail with attachments from PL/SQL but I don4t know what must I do to attach files from the user's PC. Our aplication is developed with Portal. Does anybody knows any java program than can be used like portlet who opens th

  • Colour won't recognise my clips from Final Cut?? PLEASE HELP!!

    I have imported a single track of clips into Colour. The clips comprised of three different source films; - One of the films has gone in fine. - One of the films is apparently 'offline' and I can't understand why, as it is still online in Finalcut. -

  • Can the droid be used as "just" a phone? ... you know what I mean.

    I just need a phone and do not need the "smart" capabilities. Can I use the droid I have without paying for the internet and such?