Bash: GDM wallpaper

Hi there. I thought it'd only take 5 minutes to write a simple script that sets the gdm background to that of the desktop but I obviously don't know enough Bash.
I assume others would find it useful too & I'd like to know what I'm doing wrong.
#!/bin/sh
#simple script to set gdm background to current wallpaper
#intended use: enter path to script in /etc/rc.local.shutdown
#default background dir:
DIR="/usr/share/pixmaps/backgrounds/gnome"
echo $DIR
#if original exists, move it - ie. 1st use..
MD5=`md5sum "$DIR"/background-default.jpg | cut -d" " -f 1`
#echo $MD5
MD5SUM='30dff4ca8f5d156c77acd9c5bd3feb45'
ORIG=`test "$MD5" = "$MD5SUM"; echo $?`
#echo $ORIG
#WHY CAN I NOT JUST DO: if [$MD5 = $MD5SUM]; ??
if (($ORIG == 0)); then
mv "$DIR"/background-default.jpg "$DIR"/nature/
fi
#find current wallpaper
LOC=`gconftool-2 -g /desktop/gnome/background/picture_filename`
echo $LOC
#create symlink
#ln -sf "$LOC" "$DIR"/background-default.jpg // WHY DOESN'T THIS WORK, WHERE LINE BELOW DOES?
ln -sf /home/ahaslam/images/wallpapers/01943_bluesunrise_1024x600.jpg /usr/share/pixmaps/backgrounds/gnome/background-default.jpg
Cheers.

I don't think GDM uses the system default background. Look at the wiki for how to configure GDM properly. On the other hand, you could use this script I wrote to configure it:
#!/bin/bash
if [ -z "$1" -o -n "$2" ]; then
echo "Usage: $0 user"
exit 1
fi
IFS=$'\n'
folders=('/apps/gdm/simple-greeter' '/apps/metacity/general' '/desktop/gnome/background' '/desktop/gnome/font_rendering' '/desktop/gnome/interface')
for folder in "${folders[@]}"; do
for line in $(su -c "gconftool-2 -a '$folder'" "$1"); do
key="$(expr "$line" : ' \(.\+\) = .*')"
value="$(expr "$line" : '.* = \(.\+\)')"
type="$(su -c "gconftool-2 -T '$folder/$key' 2> /dev/null" "$1")"
case "$type" in
bool|float|int|string)
sudo -u gdm gconftool-2 --set --type "$type" --set "$folder/$key" "$value"
esac
done
done
it should be run as root with your username as the first argument, and it also configures the widget theme, metacity settings etc
Last edited by PirateJonno (2010-02-19 00:39:38)

Similar Messages

  • A script for setting a random wallpaper

    I've cooked up this small bash script for changing the wallpaper to a random one from a specified directory (it is recursive)
    The script tries to be smart in determining whether the wallpaper should be scaled, centered or tiled.
    Just configure it and try it out.
    Anyway, here goes:
    #!/bin/bash
    # Random wallpaper setter, by moljac024
    # Configuration
    # Wallpaper directory
    wpDir="$HOME/Wallpapers"
    # Wallpaper list path
    wpList=$HOME/.wallpaper-list
    # Folders to be skipped, you can put as many as you like
    #wpSkip=("Dir1/" "Dir2/")
    # Scale images that have a lower resolution than that of the screen (yes or no)
    scaleLowerRes="yes"
    #scaleLowerRes="no"
    # Screen resolution
    resWidth=1280
    resHeight=800
    # Command for tiling the wallpaper
    cmdTile="feh --bg-tile"
    #cmdTile="nitrogen --set-tiled --save"OA
    #cmdTile="xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-style -s 2 && xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-path -s"
    #cmdTile="gconftool-2 -t str --set /desktop/gnome/background/picture_options "wallpaper" -t str --set /desktop/gnome/background/picture_filename"
    # Command for scaling the wallpaper
    cmdScale="feh --bg-scale"
    #cmdScale="nitrogen --set-scaled --save"
    #cmdScale="xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-style -s 3 && xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-path -s"
    #cmdScale="gconftool-2 -t str --set /desktop/gnome/background/picture_options "zoom" -t str --set /desktop/gnome/background/picture_filename"
    # Command for centering the wallpaper
    cmdCenter="feh --bg-center"
    #cmdCenter="nitrogen --set-centered --save"
    #cmdCenter="xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-style -s 1 && xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/image-path -s"
    #cmdCenter="gconftool-2 -t str --set /desktop/gnome/background/picture_options "centered" -t str --set /desktop/gnome/background/picture_filename"
    # End of configuration
    setTiled ()
    `$cmdTile "$1"`
    if [ "$?" = "0" ]; then
    echo "Wallpaper tiled."
    else
    echo "Wallpaper not set!"
    exit 1
    fi
    setScaled ()
    `$cmdScale "$1"`
    if [ "$?" = "0" ]; then
    echo "Wallpaper scaled."
    else
    echo "Wallpaper not set!"
    exit 1
    fi
    setCentered ()
    `$cmdCenter "$1"`
    if [ "$?" = "0" ]; then
    echo "Wallpaper centered."
    else
    echo "Wallpaper not set!"
    exit 1
    fi
    createList ()
    # Go to the wallpaper directory
    cd "$wpDir"
    # Load the list of pictures to a variable
    wpDirList=`(find . -regex ".*\([jJ][pP][gG]\|[jJ][pP][eE][gG]\|[gG][iI][fF]\|[pP][nN][gG]\|[bB][mM][pP]\)$" -type f)`
    # Save the list to disk
    if [[ ( -w "$wpList" ) ]]; then
    echo -n "$wpDirList" > "$wpList"
    # Filter out unwanted folders
    if [[ "$dontSkip" == "false" ]]; then
    for dir in "${wpSkip[@]}"
    do
    grep -Ev "$dir" "$wpList" > ~/.wallpapers-tmpr; mv ~/.wallpapers-tmpr "$wpList"
    done
    fi
    # Output result
    echo "Wallpaper list saved."
    else
    echo "Can't write wallpaper list, aborting!"
    exit 1
    fi
    getImage ()
    # Count number of pictures in the wallpaper list by counting number of lines.
    # Check if the wallpaper list exists, is not empty and we have read persmission on it
    if [[ ( -s "$wpList" && -f "$wpList" ) && -r "$wpList" ]]
    then
    wpListNumber=$(wc -l < "$wpList")
    else
    echo "Can't read wallpaper list, aborting!";
    exit 1
    fi
    # Counter for bad entries in wallpaper list
    badMax=100
    while true; do
    # Get a seed for the random number generator from /dev/urandom
    SEED=$(head -1 /dev/urandom | od -N 1 | awk '{ print $2 }')
    RANDOM=$SEED
    # Find a random line number in the wallpaper list
    # Random number from 1..n.
    #r=$((RANDOM % $wpListNumber + 1))
    r=$(echo $RANDOM%"$wpListNumber"+1 | bc)
    # Print what the line number is
    # Print the r'th line.
    imgPath=`sed -n "$r{p;q;}" "$wpList"`
    # #./ crops that substring but it doesn't matter if it left there
    wpPath="${wpDir}${imgPath#./}"
    # Check if the chosen file exists
    if [ -f "$wpPath" ]; then
    break
    else
    echo -e ""$wpPath": doesn't exist!\n"
    badMax=$(( $badMax - 1 ))
    if [ "$badMax" == "0" ]; then
    echo "Too many non-valid entries found in wallpaper list, aborting!"
    exit 1
    else echo "Choosing new image..."
    fi
    continue
    fi
    done
    # Calculate size and aspect for chosen image and print out information
    imgHeight=$(identify -format "%h" "$wpPath")
    imgWidth=$(identify -format "%w" "$wpPath")
    imgAspect=$(echo "scale=1; "$imgWidth"/"$imgHeight"" | bc)
    echo -e "Image: "$wpPath"\n"
    echo -e "Resolution: "$imgWidth"x"$imgHeight""
    echo -e "Aspect: "$imgAspect":1\n"
    setWallpaper ()
    # Calculate resolution aspect ratio
    resAspect=$(echo "scale=1; "$resWidth"/"$resHeight"" | bc)
    # If the image is smaller than the resolution and is not a tile then scale it, otherwise look at aspect
    if [[ ("$scaleLowerRes" == "yes") && ( "$imgAspect" != "1.0" && ("$imgWidth" -lt "$resWidth" || "$imgHeight" -lt "$resHeight") ) ]]
    then
    setScaled "$wpPath"
    else
    case $imgAspect in
    1.0)
    setTiled "$wpPath"
    1.5 | 1.6 | 1.7 | 1.8)
    if [[ "$resAspect" < "1.5" ]]; then
    setCentered "$wpPath"
    else
    setScaled "$wpPath"
    fi
    if [[ "$resAspect" < "1.5" ]]; then
    setScaled "$wpPath"
    else
    setCentered "$wpPath"
    fi
    esac
    fi
    checkConfig ()
    # Initial errors
    errorsPresent="no"
    dontSkip="false"
    # Check if all variables are set
    if [[ !( ( -n "$wpDir" ) && ( -n "$wpList" ) && ( -n "$resWidth" ) && ( -n "$resHeight" ) && ( -n "$scaleLowerRes" ) && ( -n "$cmdTile" ) && ( -n "$cmdScale" ) && ( -n "$cmdCenter" ) ) ]]
    then
    echo -e "\nOne or more options not set, aborting!"
    exit 1
    fi
    # Check if there is a trailing backslash in the wallpaper directory
    spDir=`echo -n "$wpDir" | tail -c -1`
    if [[ !( "$spDir" == "/" ) ]]
    then
    wpDir=""$wpDir"/"
    fi
    # Check if there is read permission on wallpaper directory and if it is a directory
    if [[ !( ( -r "$wpDir" ) && ( -d "$wpDir" ) ) ]]
    then
    echo "Can't read wallpaper directory!"
    errorsPresent="yes"
    fi
    # Check if the specified wallpaper list is a regular file and not a directory
    touch "$wpList" &> /dev/null
    if [[ ( -d "$wpList" ) ]]
    then
    echo "Specified wallpaper list is a directory, not a file!"
    errorsPresent="yes"
    fi
    # Check if variables are set correctly
    if [[ !( "$scaleLowerRes" == "yes" || "$scaleLowerRes" == "no" ) ]]
    then
    echo "Specified option for scaling the wallpaper is not valid!"
    errorsPresent="yes"
    fi
    if $(echo ""$resWidth"" | grep [^0-9] &>/dev/null)
    then
    echo "Specified resolution width is not a number!"
    errorsPresent="yes"
    fi
    if $(echo ""$resHeight"" | grep [^0-9] &>/dev/null)
    then
    echo "Specified resolution height is not a number!"
    errorsPresent="yes"
    fi
    # Check if any of the tests failed
    if [[ "$errorsPresent" == "yes" ]]
    then
    echo -e "\nOne or more errors found, aborting!"
    exit 1
    fi
    ignoreWPSkip()
    dontSkip="true"
    printUsage ()
    echo -e "Invalid command line argument(s)!\nUsage:\n"
    echo -e "`basename "$0"` [options]\n"
    echo -e "Options:\n"
    echo -e "-s | --set \tSet a wallpaper without updating the list"
    echo -e "-u | --update \tUpdate the list without setting a wallpaper"
    echo -e "-ua | --update-all\tUpdate the list without setting a wallpaper, but don't skip any folders"
    echo -e "-su | --set-update\tUpdate the list and set a wallpaper"
    exit 1
    if [ "$#" == "1" ]; then
    case "$1" in
    "-s" | "--set")
    checkConfig
    getImage
    setWallpaper
    exit 0
    "-u" | "--update")
    checkConfig
    createList
    exit 0
    "-ua" | "--update-all")
    checkConfig
    ignoreWPSkip
    createList
    exit 0
    "-su" | "--set-update")
    checkConfig
    createList
    getImage
    setWallpaper
    exit 0
    printUsage
    exit 1
    esac
    else
    printUsage
    exit 1
    fi
    Last edited by moljac024 (2009-09-14 21:02:13)

    I did something similar a couple of months ago, but instead of attempting to be clever and guessing what the background image is supposed to be, I just write it in the filename. Since some pictures just end up being too bright (or whatever) when used as a background to a urxvt terminal, I added some extra parameters for setting gamma, brightness, tint and the direction the image should be rendered. It relies on hsetroot for actually rendering the picture.
    #!/usr/bin/python
    # set-background
    import sys, os, string, re
    patterns = [ (re.compile("t-([a-f\d]+)"), lambda x: "-tint \#" + x)
    , (re.compile("b-([\d]+)"), lambda x: "-brightness -0." + x)
    , (re.compile("g-([\d]+)"), lambda x: "-gamma "+ x)
    , (re.compile("f-(v|h|d)"), lambda x: "-flip" + x)
    def buildCommand(file):
    output = ["hsetroot"]
    output.append("-" + (string.split(file,".")[-2]))
    output.append(file)
    for token in string.split(file,".")[1:-2]:
    for (pat,f) in patterns:
    if pat.match(token):
    output.append( f(pat.findall(token)[0]))
    return string.join(output)
    print buildCommand(img)
    os.system(buildCommand(img))
    # vim:set et:
    So for instance, an image with the name background.t-704214.f-v.full.jpg would be rendered as a stretched image, flipped vertically with a sepia tint. The files are required to be in the following format NAME.(MODIFIER.)*TYPE.SUFFIX, where the the order and number of modifiers are unimportant. The gamma values are somewhat unintuitive, but I guess you'll just have to play around with it to get it right.
    And to randomize the whole thing, I just used the following script in my .xinitrc to randomly pick a image from a folder.
    #!/bin/bash
    bg_folder="$HOME/.backgrounds";
    pics=($(ls $bg_folder))
    let "n = $RANDOM % ${#pics[@]}"
    (cd $bg_folder; set-background ${pics[$n]})

  • GDM/LightDM black background

    IDK, I have this werid issue where there is no background on gdm or lightdm. I tried to configure GDM wallpaper with GDM3setup and it changed the wallpaper but the wallpaper would always load for a split second then black screen would replace it. I decided to switch to lightdm with gtk3 greeter and set it up and tested it through terminal to make sure the wallpaper was working but when I logged out it ignored the wallpaper and again, I have a black screen. Anyone have any ideas what could cause this?

    hadrons123 wrote:Where is your wallpaper located?
    I would suggest moving it home folder.
    ~/Pictures/Wallpaper
    Padfoot wrote:
    Also, are you using lightdm and the greeter from community (v 1.4) or from aur (v 1.5.1)? The version in community has a bug where backgrounds without an alpha channel are not displaying. Upstream have fixed this bug in 1.5.1 (it is not being backported to 1.4).
    This could be your problem. The solution is either modify the image in gimp to add an alpha channel or try lightdm/greeter from aur.
    As for GDM, i can't help you there
    I'm using lightdm-bz from aur.
    Last edited by LinuxFTW (2013-04-04 18:36:16)

  • Feh restore wallpaper problem

    Hello.
    I use feh to set my wallpaper, but command eval `cat $HOME/.fehbg` & don't accept spaces in my wallpapers name.
    What to do if the wallpaper/image has spaces in its name?
    Feh doesn't save the filename bash compliant (Wallpaper/Sky - Blue.jpg instead of Wallpaper/Waves\ -\ Blue.jpg).
    How can i make to restore my wallpapers with spaces in its name?

    Ramses de Norre wrote:
    . $HOME/.fehbg
    works for me.
    The problem is that feh doesn't enclose the file name in quotes when it saves it in .fehbg
    So you come to have something like
    feh --bg-center file with spaces.jpg
    you can't even escape quotes because in that case you would find yourself with
    "feh --bg-center file with spaces.jpg"
    which is recognize as a single command (imagine you had a file called "feh --bg-center file with spaces.jpg" in /usr/bin )
    That's why you have to resort to sed/awk to make it work like I did: you need to put the quotes in the right place.

  • GDM login screen.

    Hi, is there anyway to change the login screen  for gnome? i saw some login themes at gnome-art i would like to try. there doesn't seem to be any easy way to add them
    i can change the gdm wallpaper with some cumbersome shell script nonsense, but not the overall theme.
    i am using
    gnome 2.30.2-1
    gdm  2.30.5-1

    If you don't feel like installing an app for this, it's actually quite simple.
    http://wiki.archlinux.org/index.php/Gno … g_gdm_2.28
    I use Method 1.   Paste the first command in a terminal, log out and change the theme, log in and paste the second command in the terminal.

  • Gnome 3 - Change login background

    I just installed Gnome 3 and am running in fallback mode.
    In Gnome 2 was able to customize the login window background. Is there a way to change the default background in Gnome 3?
    I'm ok with overwriting the default background picture, as well.
    Thanks!
    Last edited by youjh (2011-05-04 20:51:41)

    The wiki procedure, e.g.
    $ su -
    Password:
    [root@first-desktop ~]# su - gdm -s /bin/bash
    [gdm@first-desktop ~]$ dbus-launch
    No protocol specified
    DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-CIylRIX6Qz,guid=17e852f3d2ebc593113ace52000007d5
    DBUS_SESSION_BUS_PID=12403
    [gdm@first-desktop ~]$ export DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-CIylRIX6Qz,guid=17e852f3d2ebc593113ace52000007d5
    [gdm@first-desktop ~]$ export DBUS_SESSION_BUS_PID=12403
    [gdm@first-desktop ~]$ ps aux | grep dconf
    gdm 12518 0.0 0.0 8164 968 pts/0 S+ 21:22 0:00 grep dconf
    [gdm@first-desktop ~]$ /usr/lib/dconf/dconf-service &
    [1] 12540
    [gdm@first-desktop ~]$ GSETTINGS_BACKEND=dconf gsettings get org.gnome.desktop.background picture-uri
    'file:///var/lib/gdm/.cache/gnome-control-center/backgrounds/413e48595eeacc43c375b9cb3b501557f13766f0c6b812c1402a1e5c9ff910d1'
    [gdm@first-desktop ~]$ GSETTINGS_BACKEND=dconf gsettings set org.gnome.desktop.background picture-uri "file:///usr/share/archlinux/wallpaper/archlinux-arrival.jpg"
    [gdm@first-desktop ~]$ exit
    logout
    [root@first-desktop ~]# exit
    logout
    $
    really does change the background of the gdm login window, though it's also possible to
    sudo cp -t /usr/share/gdm/autostart/LoginWindow/ /usr/share/applications/gnome-control-center.desktop /usr/share/applications/dconf-editor.desktop
    then logout, make tweaks, log back in and
    sudo rm /usr/share/gdm/autostart/LoginWindow/gnome-control-center.desktop /usr/share/gdm/autostart/LoginWindow/dconf-editor.desktop
    Last edited by azleifel (2011-05-04 20:42:38)

  • Slow start [X problems?]

    I was using my current Arch install for some time now without any problem.
    Yesterday I turned on my laptop as usual and the "boot" time was really slow compared to the time before...
    Normally it took about 5 seconds to get me to GDM and then around 2 seconds to get GNOME ready for work...
    Now, it is around 11 seconds for GDM and another 5 for GNOME...
    I personally think that this is not so much something else but X  - because it will take around 5-6 seconds from the time when my GDM wallpaper will firstly show up to the time when the actual GDM login screen will pop-up.
    I really don't know what is causing something like that, so I am asking here for help...
    What logs can be useful?, so I can post them here...

    Here is my dmesg;
    [ 1.399889] pci 0000:00:1b.0: PME# disabled
    [ 1.399906] pci 0000:00:1c.0: [8086:3b42] type 1 class 0x000604
    [ 1.399956] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 1.399960] pci 0000:00:1c.0: PME# disabled
    [ 1.399978] pci 0000:00:1c.1: [8086:3b44] type 1 class 0x000604
    [ 1.400027] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 1.400031] pci 0000:00:1c.1: PME# disabled
    [ 1.400061] pci 0000:00:1d.0: [8086:3b34] type 0 class 0x000c03
    [ 1.400312] pci 0000:00:1d.0: reg 10: [mem 0xb4405800-0xb4405bff]
    [ 1.401775] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 1.401779] pci 0000:00:1d.0: PME# disabled
    [ 1.401799] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
    [ 1.401850] pci 0000:00:1f.0: [8086:3b09] type 0 class 0x000601
    [ 1.401953] pci 0000:00:1f.2: [8086:3b29] type 0 class 0x000106
    [ 1.401975] pci 0000:00:1f.2: reg 10: [io 0x3048-0x304f]
    [ 1.401984] pci 0000:00:1f.2: reg 14: [io 0x305c-0x305f]
    [ 1.401994] pci 0000:00:1f.2: reg 18: [io 0x3040-0x3047]
    [ 1.402003] pci 0000:00:1f.2: reg 1c: [io 0x3058-0x305b]
    [ 1.402012] pci 0000:00:1f.2: reg 20: [io 0x3020-0x303f]
    [ 1.402021] pci 0000:00:1f.2: reg 24: [mem 0xb4405000-0xb44057ff]
    [ 1.402060] pci 0000:00:1f.2: PME# supported from D3hot
    [ 1.402064] pci 0000:00:1f.2: PME# disabled
    [ 1.402079] pci 0000:00:1f.3: [8086:3b30] type 0 class 0x000c05
    [ 1.402093] pci 0000:00:1f.3: reg 10: [mem 0xb4406000-0xb44060ff 64bit]
    [ 1.402112] pci 0000:00:1f.3: reg 20: [io 0x3000-0x301f]
    [ 1.402144] pci 0000:00:1f.6: [8086:3b32] type 0 class 0x001180
    [ 1.402164] pci 0000:00:1f.6: reg 10: [mem 0xb4404000-0xb4404fff 64bit]
    [ 1.402275] pci 0000:01:00.0: [10ec:8168] type 0 class 0x000200
    [ 1.402290] pci 0000:01:00.0: reg 10: [io 0x2000-0x20ff]
    [ 1.402317] pci 0000:01:00.0: reg 18: [mem 0xb0404000-0xb0404fff 64bit pref]
    [ 1.402335] pci 0000:01:00.0: reg 20: [mem 0xb0400000-0xb0403fff 64bit pref]
    [ 1.402380] pci 0000:01:00.0: supports D1 D2
    [ 1.402382] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.402386] pci 0000:01:00.0: PME# disabled
    [ 1.402423] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 1.402427] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 1.402430] pci 0000:00:1c.0: bridge window [mem 0xb3400000-0xb43fffff]
    [ 1.402436] pci 0000:00:1c.0: bridge window [mem 0xb0400000-0xb13fffff 64bit pref]
    [ 1.402523] pci 0000:02:00.0: [14e4:4727] type 0 class 0x000280
    [ 1.402545] pci 0000:02:00.0: reg 10: [mem 0xb2400000-0xb2403fff 64bit]
    [ 1.402635] pci 0000:02:00.0: supports D1 D2
    [ 1.402673] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
    [ 1.402676] pci 0000:00:1c.1: bridge window [io 0x1000-0x1fff]
    [ 1.402680] pci 0000:00:1c.1: bridge window [mem 0xb2400000-0xb33fffff]
    [ 1.402685] pci 0000:00:1c.1: bridge window [mem 0xb1400000-0xb23fffff 64bit pref]
    [ 1.402738] pci 0000:00:1e.0: PCI bridge to [bus 03-03] (subtractive decode)
    [ 1.402742] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 1.402746] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 1.402751] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 1.402753] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 1.402755] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 1.402757] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 1.402759] pci 0000:00:1e.0: bridge window [mem 0xa0000000-0xfeafffff] (subtractive decode)
    [ 1.402773] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 1.402891] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    [ 1.402951] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 1.402983] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 1.403060] \_SB_.PCI0:_OSC invalid UUID
    [ 1.403061] _OSC request data:1 1f 1f
    [ 1.403065] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 1.403090] \_SB_.PCI0:_OSC invalid UUID
    [ 1.403091] _OSC request data:1 0 1d
    [ 1.403094] pci0000:00: ACPI _OSC request failed (AE_ERROR), returned control mask: 0x1d
    [ 1.403095] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 1.407020] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
    [ 1.407076] pci 0000:ff:00.0: [8086:2c62] type 0 class 0x000600
    [ 1.407094] pci 0000:ff:00.1: [8086:2d01] type 0 class 0x000600
    [ 1.407110] pci 0000:ff:02.0: [8086:2d10] type 0 class 0x000600
    [ 1.407124] pci 0000:ff:02.1: [8086:2d11] type 0 class 0x000600
    [ 1.407138] pci 0000:ff:02.2: [8086:2d12] type 0 class 0x000600
    [ 1.407152] pci 0000:ff:02.3: [8086:2d13] type 0 class 0x000600
    [ 1.407178] pci0000:ff: Requesting ACPI _OSC control (0x1d)
    [ 1.407180] pci0000:ff: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [ 1.407182] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 1.407361] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    [ 1.407396] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 1.407430] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    [ 1.407463] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 11 12 14 15)
    [ 1.407497] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 1.407530] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 1.407564] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 1.407598] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 1.407682] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 1.407689] vgaarb: loaded
    [ 1.407690] vgaarb: bridge control possible 0000:00:02.0
    [ 1.407755] PCI: Using ACPI for IRQ routing
    [ 1.415815] PCI: pci_cache_line_size set to 64 bytes
    [ 1.415867] reserve RAM buffer: 000000000009d000 - 000000000009ffff
    [ 1.415869] reserve RAM buffer: 000000009b63f000 - 000000009bffffff
    [ 1.415870] reserve RAM buffer: 000000009b800000 - 000000009bffffff
    [ 1.415980] NetLabel: Initializing
    [ 1.415982] NetLabel: domain hash size = 128
    [ 1.415983] NetLabel: protocols = UNLABELED CIPSOv4
    [ 1.415994] NetLabel: unlabeled traffic allowed by default
    [ 1.416009] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 1.416013] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 1.418028] Switching to clocksource hpet
    [ 1.420931] Switched to NOHz mode on CPU #0
    [ 1.420991] Switched to NOHz mode on CPU #1
    [ 1.421038] Switched to NOHz mode on CPU #3
    [ 1.421051] Switched to NOHz mode on CPU #2
    [ 1.422891] pnp: PnP ACPI init
    [ 1.422907] ACPI: bus type pnp registered
    [ 1.423199] pnp 00:00: [bus 00-fe]
    [ 1.423201] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 1.423203] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 1.423205] pnp 00:00: [io 0x0d00-0xffff window]
    [ 1.423206] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 1.423208] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 1.423209] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 1.423211] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 1.423212] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 1.423214] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 1.423215] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 1.423217] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 1.423218] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 1.423221] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 1.423222] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 1.423224] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 1.423225] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 1.423227] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 1.423228] pnp 00:00: [mem 0xa0000000-0xfeafffff window]
    [ 1.423230] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    [ 1.423325] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 1.423362] pnp 00:01: [io 0x0000-0x001f]
    [ 1.423364] pnp 00:01: [io 0x0081-0x0091]
    [ 1.423365] pnp 00:01: [io 0x0093-0x009f]
    [ 1.423366] pnp 00:01: [io 0x00c0-0x00df]
    [ 1.423368] pnp 00:01: [dma 4]
    [ 1.423387] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 1.423394] pnp 00:02: [mem 0xff000000-0xffffffff]
    [ 1.423411] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 1.423499] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 1.423522] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 1.423530] pnp 00:04: [io 0x00f0]
    [ 1.423540] pnp 00:04: [irq 13]
    [ 1.423558] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 1.423567] pnp 00:05: [io 0x002e-0x002f]
    [ 1.423568] pnp 00:05: [io 0x004e-0x004f]
    [ 1.423569] pnp 00:05: [io 0x0061]
    [ 1.423570] pnp 00:05: [io 0x0063]
    [ 1.423571] pnp 00:05: [io 0x0065]
    [ 1.423573] pnp 00:05: [io 0x0067]
    [ 1.423574] pnp 00:05: [io 0x0070]
    [ 1.423575] pnp 00:05: [io 0x0080]
    [ 1.423576] pnp 00:05: [io 0x0092]
    [ 1.423577] pnp 00:05: [io 0x00b2-0x00b3]
    [ 1.423579] pnp 00:05: [io 0x0680-0x069f]
    [ 1.423580] pnp 00:05: [io 0x0800-0x080f]
    [ 1.423581] pnp 00:05: [io 0xffff]
    [ 1.423582] pnp 00:05: [io 0xffff]
    [ 1.423583] pnp 00:05: [io 0x0400-0x047f]
    [ 1.423585] pnp 00:05: [io 0x0500-0x0501]
    [ 1.423586] pnp 00:05: [io 0x0700-0x077f]
    [ 1.423587] pnp 00:05: [io 0x164e-0x164f]
    [ 1.423599] pnp 00:05: disabling [io 0x164e-0x164f] because it overlaps 0000:00:1c.1 BAR 13 [io 0x1000-0x1fff]
    [ 1.423637] system 00:05: [io 0x0680-0x069f] has been reserved
    [ 1.423639] system 00:05: [io 0x0800-0x080f] has been reserved
    [ 1.423640] system 00:05: [io 0xffff] has been reserved
    [ 1.423642] system 00:05: [io 0xffff] has been reserved
    [ 1.423644] system 00:05: [io 0x0400-0x047f] has been reserved
    [ 1.423646] system 00:05: [io 0x0500-0x0501] has been reserved
    [ 1.423647] system 00:05: [io 0x0700-0x077f] has been reserved
    [ 1.423650] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.423657] pnp 00:06: [io 0x0070-0x0077]
    [ 1.423662] pnp 00:06: [irq 8]
    [ 1.423682] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 1.423690] pnp 00:07: [io 0x0060]
    [ 1.423691] pnp 00:07: [io 0x0064]
    [ 1.423696] pnp 00:07: [irq 1]
    [ 1.423715] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 1.423724] pnp 00:08: [irq 12]
    [ 1.423743] pnp 00:08: Plug and Play ACPI device, IDs SYN1e21 SYN1e00 SYN0002 PNP0f13 (active)
    [ 1.423836] pnp 00:09: [irq 23]
    [ 1.423868] pnp 00:09: Plug and Play ACPI device, IDs HPQ0004 (active)
    [ 1.424022] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
    [ 1.424025] pnp 00:0a: [mem 0xfed10000-0xfed13fff]
    [ 1.424027] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
    [ 1.424028] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
    [ 1.424029] pnp 00:0a: [mem 0xe0000000-0xefffffff]
    [ 1.424031] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
    [ 1.424032] pnp 00:0a: [mem 0xfed90000-0xfed8ffff disabled]
    [ 1.424034] pnp 00:0a: [mem 0xfed45000-0xfed8ffff]
    [ 1.424035] pnp 00:0a: [mem 0xff000000-0xffffffff]
    [ 1.424037] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
    [ 1.424038] pnp 00:0a: [mem 0xb4500000-0xb4500fff]
    [ 1.424086] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 1.424088] system 00:0a: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 1.424090] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 1.424091] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 1.424093] system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
    [ 1.424095] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 1.424097] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 1.424099] system 00:0a: [mem 0xff000000-0xffffffff] could not be reserved
    [ 1.424101] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 1.424103] system 00:0a: [mem 0xb4500000-0xb4500fff] has been reserved
    [ 1.424105] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.424278] pnp 00:0b: [bus ff]
    [ 1.424319] pnp 00:0b: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 1.424340] pnp: PnP ACPI: found 12 devices
    [ 1.424341] ACPI: ACPI bus type pnp unregistered
    [ 1.430015] PCI: max bus depth: 1 pci_try_num: 2
    [ 1.430040] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 1.430043] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 1.430047] pci 0000:00:1c.0: bridge window [mem 0xb3400000-0xb43fffff]
    [ 1.430051] pci 0000:00:1c.0: bridge window [mem 0xb0400000-0xb13fffff 64bit pref]
    [ 1.430056] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
    [ 1.430059] pci 0000:00:1c.1: bridge window [io 0x1000-0x1fff]
    [ 1.430063] pci 0000:00:1c.1: bridge window [mem 0xb2400000-0xb33fffff]
    [ 1.430067] pci 0000:00:1c.1: bridge window [mem 0xb1400000-0xb23fffff 64bit pref]
    [ 1.430072] pci 0000:00:1e.0: PCI bridge to [bus 03-03]
    [ 1.430074] pci 0000:00:1e.0: bridge window [io disabled]
    [ 1.430078] pci 0000:00:1e.0: bridge window [mem disabled]
    [ 1.430081] pci 0000:00:1e.0: bridge window [mem pref disabled]
    [ 1.430096] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 1.430101] pci 0000:00:1c.0: setting latency timer to 64
    [ 1.430108] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    [ 1.430112] pci 0000:00:1c.1: setting latency timer to 64
    [ 1.430117] pci 0000:00:1e.0: setting latency timer to 64
    [ 1.430121] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 1.430122] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 1.430124] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.430126] pci_bus 0000:00: resource 7 [mem 0xa0000000-0xfeafffff]
    [ 1.430128] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
    [ 1.430129] pci_bus 0000:01: resource 1 [mem 0xb3400000-0xb43fffff]
    [ 1.430131] pci_bus 0000:01: resource 2 [mem 0xb0400000-0xb13fffff 64bit pref]
    [ 1.430133] pci_bus 0000:02: resource 0 [io 0x1000-0x1fff]
    [ 1.430134] pci_bus 0000:02: resource 1 [mem 0xb2400000-0xb33fffff]
    [ 1.430136] pci_bus 0000:02: resource 2 [mem 0xb1400000-0xb23fffff 64bit pref]
    [ 1.430138] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    [ 1.430140] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    [ 1.430141] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.430143] pci_bus 0000:03: resource 7 [mem 0xa0000000-0xfeafffff]
    [ 1.430203] NET: Registered protocol family 2
    [ 1.430353] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 1.431201] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 1.433022] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.433247] TCP: Hash tables configured (established 524288 bind 65536)
    [ 1.433249] TCP reno registered
    [ 1.433259] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 1.433280] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 1.433499] NET: Registered protocol family 1
    [ 1.433516] pci 0000:00:02.0: Boot video device
    [ 1.458155] PCI: CLS 64 bytes, default 64
    [ 1.458225] Unpacking initramfs...
    [ 1.484134] Freeing initrd memory: 2580k freed
    [ 1.484594] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.484598] Placing 64MB software IO TLB between ffff88009763b000 - ffff88009b63b000
    [ 1.484600] software IO TLB at phys 0x9763b000 - 0x9b63b000
    [ 1.484624] Simple Boot Flag at 0x44 set to 0x1
    [ 1.485050] audit: initializing netlink socket (disabled)
    [ 1.485062] type=2000 audit(1315822178.323:1): initialized
    [ 1.492695] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.508513] VFS: Disk quotas dquot_6.5.2
    [ 1.508622] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.508757] msgmni has been set to 7525
    [ 1.508943] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 1.508973] io scheduler noop registered
    [ 1.508975] io scheduler deadline registered
    [ 1.509014] io scheduler cfq registered (default)
    [ 1.509246] intel_idle: MWAIT substates: 0x1120
    [ 1.509248] intel_idle: v0.4 model 0x25
    [ 1.509249] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.509284] ERST: Table is not found!
    [ 1.509354] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.741598] Linux agpgart interface v0.103
    [ 1.741664] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.744905] i8042: Detected active multiplexing controller, rev 1.1
    [ 1.747808] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.747819] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 1.747821] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 1.747822] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 1.747824] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 1.747950] mousedev: PS/2 mouse device common for all mice
    [ 1.747993] rtc_cmos 00:06: RTC can wake from S4
    [ 1.748085] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 1.748111] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    [ 1.748186] cpuidle: using governor ladder
    [ 1.748297] cpuidle: using governor menu
    [ 1.748468] TCP cubic registered
    [ 1.748471] NET: Registered protocol family 17
    [ 1.748478] Registering the dns_resolver key type
    [ 1.748548] PM: Hibernation image not present or could not be loaded.
    [ 1.748552] registered taskstats version 1
    [ 1.756092] rtc_cmos 00:06: setting system clock to 2011-09-12 10:09:39 UTC (1315822179)
    [ 1.756139] Initializing network drop monitor service
    [ 1.757333] Freeing unused kernel memory: 712k freed
    [ 1.757444] Write protecting the kernel read-only data: 6144k
    [ 1.757655] Freeing unused kernel memory: 12k freed
    [ 1.759735] Freeing unused kernel memory: 776k freed
    [ 1.775432] udevd[57]: starting version 173
    [ 1.777775] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
    [ 1.777831] ACPI: Lid Switch [LID0]
    [ 1.777865] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    [ 1.777869] ACPI: Power Button [PWRB]
    [ 1.777902] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [ 1.777905] ACPI: Power Button [PWRF]
    [ 1.778634] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
    [ 1.778768] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 1.779673] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
    [ 1.779813] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xa0000000
    [ 1.783177] [drm] Initialized drm 1.1.0 20060810
    [ 1.783202] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
    [ 1.793259] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.793264] i915 0000:00:02.0: setting latency timer to 64
    [ 1.832082] mtrr: no more MTRRs available
    [ 1.832084] [drm] MTRR allocation failed. Graphics performance may suffer.
    [ 1.832892] i915 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 1.832897] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.832899] [drm] Driver supports precise vblank timestamp query.
    [ 1.832941] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 2.062561] fbcon: inteldrmfb (fb0) is primary device
    [ 2.225223] Console: switching to colour frame buffer device 170x48
    [ 2.227636] fb0: inteldrmfb frame buffer device
    [ 2.227638] drm: registered panic notifier
    [ 2.258632] acpi device:02: registered as cooling_device0
    [ 2.258893] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
    [ 2.258900] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 2.259098] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 2.308280] usbcore: registered new interface driver usbfs
    [ 2.309125] usbcore: registered new interface driver hub
    [ 2.309250] usbcore: registered new device driver usb
    [ 2.310828] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 2.310863] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 2.310902] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 2.310907] ehci_hcd 0000:00:1a.0: EHCI Host Controller
    [ 2.311162] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 2.311487] ehci_hcd 0000:00:1a.0: debug port 2
    [ 2.316285] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    [ 2.316395] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xb4405c00
    [ 2.321793] SCSI subsystem initialized
    [ 2.325804] libata version 3.00 loaded.
    [ 2.327640] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 2.327772] hub 1-0:1.0: USB hub found
    [ 2.327777] hub 1-0:1.0: 3 ports detected
    [ 2.328049] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [ 2.328091] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 2.328095] ehci_hcd 0000:00:1d.0: EHCI Host Controller
    [ 2.328105] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 2.328135] ehci_hcd 0000:00:1d.0: debug port 2
    [ 2.332089] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    [ 2.332106] ehci_hcd 0000:00:1d.0: irq 20, io mem 0xb4405800
    [ 2.344397] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 2.344617] hub 2-0:1.0: USB hub found
    [ 2.344623] hub 2-0:1.0: 3 ports detected
    [ 2.344727] ahci 0000:00:1f.2: version 3.0
    [ 2.344749] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 2.344823] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 2.344901] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x13 impl SATA mode
    [ 2.344905] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck pm led clo pio slum part ems sxs apst
    [ 2.344909] ahci 0000:00:1f.2: setting latency timer to 64
    [ 2.358220] scsi0 : ahci
    [ 2.358441] scsi1 : ahci
    [ 2.358586] scsi2 : ahci
    [ 2.358706] scsi3 : ahci
    [ 2.358826] scsi4 : ahci
    [ 2.359017] ata1: SATA max UDMA/133 abar m2048@0xb4405000 port 0xb4405100 irq 41
    [ 2.359022] ata2: SATA max UDMA/133 abar m2048@0xb4405000 port 0xb4405180 irq 41
    [ 2.359025] ata3: DUMMY
    [ 2.359026] ata4: DUMMY
    [ 2.359029] ata5: SATA max UDMA/133 abar m2048@0xb4405000 port 0xb4405300 irq 41
    [ 2.484286] Refined TSC clocksource calibration: 2527.000 MHz.
    [ 2.484293] Switching to clocksource tsc
    [ 2.634223] usb 1-1: new high speed USB device number 2 using ehci_hcd
    [ 2.677534] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.677562] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.677581] ata5: SATA link down (SStatus 0 SControl 300)
    [ 2.678518] ata1.00: ATA-8: Hitachi HTS725050A9A364, PC4OCH0A, max UDMA/100
    [ 2.678523] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 2.679686] ata1.00: configured for UDMA/100
    [ 2.679959] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS72505 PC4O PQ: 0 ANSI: 5
    [ 2.689123] ata2.00: ATAPI: hp CDDVDW TS-U633J, HH00, max UDMA/100
    [ 2.701580] ata2.00: configured for UDMA/100
    [ 2.707534] scsi 1:0:0:0: CD-ROM hp CDDVDW TS-U633J HH00 PQ: 0 ANSI: 5
    [ 2.712547] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 2.712587] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.712590] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.712606] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.719341] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.719347] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.719649] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 2.742044] sda: sda1 sda2 sda3 sda4
    [ 2.742382] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.758345] hub 1-1:1.0: USB hub found
    [ 2.758553] hub 1-1:1.0: 6 ports detected
    [ 2.864083] usb 2-1: new high speed USB device number 2 using ehci_hcd
    [ 2.988220] hub 2-1:1.0: USB hub found
    [ 2.988316] hub 2-1:1.0: 8 ports detected
    [ 3.067413] usb 1-1.2: new full speed USB device number 3 using ehci_hcd
    [ 3.161455] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input5
    [ 3.161553] generic-usb 0003:046D:C52E.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1a.0-1.2/input0
    [ 3.163718] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/input/input6
    [ 3.163910] generic-usb 0003:046D:C52E.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1a.0-1.2/input1
    [ 3.163939] usbcore: registered new interface driver usbhid
    [ 3.163941] usbhid: USB HID core driver
    [ 3.224001] usb 1-1.4: new full speed USB device number 4 using ehci_hcd
    [ 3.251687] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.390667] usb 2-1.3: new full speed USB device number 3 using ehci_hcd
    [ 3.557148] usb 2-1.6: new full speed USB device number 4 using ehci_hcd
    [ 3.690543] usb 2-1.6: new high speed USB device number 5 using ehci_hcd
    [ 4.728486] udevd[257]: starting version 173
    [ 4.961545] fuse init (API version 7.16)
    [ 5.311658] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 5.311727] HDA Intel 0000:00:1b.0: irq 42 for MSI/MSI-X
    [ 5.311750] HDA Intel 0000:00:1b.0: setting latency timer to 64
    [ 5.400181] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
    [ 5.439115] cfg80211: Calling CRDA to update world regulatory domain
    [ 5.439363] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 5.439579] ACPI: AC Adapter [AC] (on-line)
    [ 5.455480] ACPI: Fan [FAN0] (on)
    [ 5.472017] input: PC Speaker as /devices/platform/pcspkr/input/input8
    [ 5.534633] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 5.534678] sr 1:0:0:0: Attached scsi generic sg1 type 5
    [ 5.695022] iTCO_vendor_support: vendor-support=0
    [ 5.743083] ACPI: acpi_idle yielding to intel_idle
    [ 5.762814] mei: module is from the staging directory, the quality is unknown, you have been warned.
    [ 6.096053] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 6.096065] ACPI: Battery Slot [BAT0] (battery present)
    [ 6.096803] HDMI status: Pin=5 Presence_Detect=0 ELD_Valid=0
    [ 6.097799] wmi: Mapper loaded
    [ 6.109000] thermal LNXTHERM:00: registered as thermal_zone0
    [ 6.109004] ACPI: Thermal Zone [TZ00] (47 C)
    [ 6.109147] input: HDA Intel Mic at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 6.109210] input: HDA Intel HP Out at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 6.109320] input: HDA Intel HDMI/DP as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 6.109443] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
    [ 6.109463] intel ips 0000:00:1f.6: PCI INT A -> GSI 21 (level, low) -> IRQ 21
    [ 6.109709] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
    [ 6.109736] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    [ 6.109858] mei 0000:00:16.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 6.109865] mei 0000:00:16.0: setting latency timer to 64
    [ 6.135585] thermal LNXTHERM:01: registered as thermal_zone1
    [ 6.135590] ACPI: Thermal Zone [TZ01] (41 C)
    [ 6.149371] cfg80211: World regulatory domain updated:
    [ 6.149375] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    [ 6.149380] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.149385] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    [ 6.149389] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    [ 6.149393] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.149397] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.156082] brcmutil: module is from the staging directory, the quality is unknown, you have been warned.
    [ 6.162465] brcmsmac: module is from the staging directory, the quality is unknown, you have been warned.
    [ 6.163703] brcmsmac 0000:02:00.0: bus 2 slot 0 func 0 irq 10
    [ 6.163719] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 6.163726] brcmsmac 0000:02:00.0: setting latency timer to 64
    [ 6.165613] thermal LNXTHERM:02: registered as thermal_zone2
    [ 6.165618] ACPI: Thermal Zone [TZ02] (0 C)
    [ 6.195864] hp_accel: laptop model unknown, using default axes configuration
    [ 6.196483] lis3lv02d: 8 bits sensor found
    [ 6.198656] Bluetooth: Core ver 2.16
    [ 6.198679] NET: Registered protocol family 31
    [ 6.198681] Bluetooth: HCI device and connection manager initialized
    [ 6.198684] Bluetooth: HCI socket layer initialized
    [ 6.198685] Bluetooth: L2CAP socket layer initialized
    [ 6.198830] Bluetooth: SCO socket layer initialized
    [ 6.204531] Bluetooth: Generic Bluetooth USB driver ver 0.6
    [ 6.204729] usbcore: registered new interface driver btusb
    [ 6.235594] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input12
    [ 6.235765] Registered led device: hp::hddprotect
    [ 6.235792] hp_accel: driver loaded
    [ 6.260921] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [ 6.261029] iTCO_wdt: Found a HM55 TCO device (Version=2, TCOBASE=0x0460)
    [ 6.261143] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 6.440005] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 6.440469] cfg80211: Calling CRDA for country: US
    [ 6.442919] cfg80211: Regulatory domain changed to country: US
    [ 6.442922] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    [ 6.442925] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
    [ 6.442928] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
    [ 6.442931] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.442933] cfg80211: (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.442936] cfg80211: (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.442938] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
    [ 6.572273] Linux media interface: v0.10
    [ 6.623740] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 6.623761] r8169 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 6.623816] r8169 0000:01:00.0: setting latency timer to 64
    [ 6.623867] r8169 0000:01:00.0: irq 43 for MSI/MSI-X
    [ 6.624050] r8169 0000:01:00.0: eth0: RTL8168d/8111d at 0xffffc900110e2000, 64:31:50:91:43:ca, XID 083000c0 IRQ 43
    [ 6.632239] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04773/0xe40000/0x5a0400
    [ 6.656899] Linux video capture interface: v2.00
    [ 6.666410] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input13
    [ 6.715502] input: HP WMI hotkeys as /devices/virtual/input/input14
    [ 6.746144] uvcvideo: Found UVC 1.00 device HP Webcam (10f1:1a28)
    [ 6.754579] input: HP Webcam as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input15
    [ 6.754640] usbcore: registered new interface driver uvcvideo
    [ 6.754641] USB Video Class driver (v1.1.0)
    [ 8.210568] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 8.493297] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 8.598490] Adding 6144856k swap on /dev/sda2. Priority:-1 extents:1 across:6144856k
    [ 12.326864] r8169 0000:01:00.0: eth0: link down
    [ 12.402050] ieee80211 phy0: wl_ops_config: change monitor mode: false (implement)
    [ 12.402096] ieee80211 phy0: wl_ops_config: change power-save mode: false (implement)
    [ 12.402731] ieee80211 phy0: wl_ops_bss_info_changed: qos enabled: false (implement)
    [ 14.564279] wlan0: authenticate with 30:46:9a:7c:42:2b (try 1)
    [ 14.732052] wlan0: authenticated
    [ 14.735599] wlan0: associate with 30:46:9a:7c:42:2b (try 1)
    [ 14.745975] wlan0: RX AssocResp from 30:46:9a:7c:42:2b (capab=0x411 status=0 aid=2)
    [ 14.745980] wlan0: associated
    [ 14.746521] ieee80211 phy0: wl_ops_bss_info_changed: qos enabled: true (implement)
    [ 14.746532] ieee80211 phy0: brcmsmac: wl_ops_bss_info_changed: associated
    [ 14.746546] ieee80211 phy0: wl_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
    [ 15.042566] Intel AES-NI instructions are not detected.
    [ 15.190492] padlock_aes: VIA PadLock not detected.
    [ 17.491412] NET: Registered protocol family 10
    [ 17.492108] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 22.298691] EXT4-fs (sda3): re-mounted. Opts: commit=0
    [ 22.454574] EXT4-fs (sda4): re-mounted. Opts: commit=0
    [ 24.772129] ieee80211 phy0: wl_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
    [ 27.990167] wlan0: no IPv6 routers present
    [ 64.354689] chromium-sandbo (1574): /proc/1572/oom_adj is deprecated, please use /proc/1572/oom_score_adj instead.
    Not sure about the latest line...
    Xorg.log;
    [ 12.466]
    X.Org X Server 1.11.0
    Release Date: 2011-08-26
    [ 12.466] X Protocol Version 11, Revision 0
    [ 12.466] Build Operating System: Linux 3.0-ARCH x86_64
    [ 12.466] Current Operating System: Linux mtldb 3.0-ARCH #1 SMP PREEMPT Tue Aug 30 08:53:25 CEST 2011 x86_64
    [ 12.466] Kernel command line: root=/dev/disk/by-uuid/3721c9e1-c884-4b12-bc6e-960948676acd ro
    [ 12.466] Build Date: 29 August 2011 07:21:16AM
    [ 12.466]
    [ 12.466] Current version of pixman: 0.22.2
    [ 12.466] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 12.466] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 12.466] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 12 11:09:50 2011
    [ 12.530] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 12.569] (==) No Layout section. Using the first Screen section.
    [ 12.569] (==) No screen section available. Using defaults.
    [ 12.569] (**) |-->Screen "Default Screen Section" (0)
    [ 12.569] (**) | |-->Monitor "<default monitor>"
    [ 12.570] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 12.570] (==) Automatically adding devices
    [ 12.570] (==) Automatically enabling devices
    [ 12.603] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 12.603] Entry deleted from font path.
    [ 12.606] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 12.606] Entry deleted from font path.
    [ 12.606] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 12.606] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 12.606] Entry deleted from font path.
    [ 12.606] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 12.606] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 12.606] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 12.606] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 12.606] (II) Loader magic: 0x7cbae0
    [ 12.606] (II) Module ABI versions:
    [ 12.606] X.Org ANSI C Emulation: 0.4
    [ 12.606] X.Org Video Driver: 11.0
    [ 12.606] X.Org XInput driver : 13.0
    [ 12.606] X.Org Server Extension : 5.0
    [ 12.607] (--) PCI:*(0:0:2:0) 8086:0046:103c:146a rev 2, Mem @ 0xb0000000/4194304, 0xa0000000/268435456, I/O @ 0x00003050/8
    [ 12.607] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 12.607] (II) LoadModule: "extmod"
    [ 12.648] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 12.659] (II) Module extmod: vendor="X.Org Foundation"
    [ 12.659] compiled for 1.11.0, module version = 1.0.0
    [ 12.659] Module class: X.Org Server Extension
    [ 12.659] ABI class: X.Org Server Extension, version 5.0
    [ 12.659] (II) Loading extension MIT-SCREEN-SAVER
    [ 12.659] (II) Loading extension XFree86-VidModeExtension
    [ 12.659] (II) Loading extension XFree86-DGA
    [ 12.659] (II) Loading extension DPMS
    [ 12.659] (II) Loading extension XVideo
    [ 12.659] (II) Loading extension XVideo-MotionCompensation
    [ 12.659] (II) Loading extension X-Resource
    [ 12.659] (II) LoadModule: "dbe"
    [ 12.659] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 12.668] (II) Module dbe: vendor="X.Org Foundation"
    [ 12.668] compiled for 1.11.0, module version = 1.0.0
    [ 12.668] Module class: X.Org Server Extension
    [ 12.668] ABI class: X.Org Server Extension, version 5.0
    [ 12.668] (II) Loading extension DOUBLE-BUFFER
    [ 12.668] (II) LoadModule: "glx"
    [ 12.668] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 12.674] (II) Module glx: vendor="X.Org Foundation"
    [ 12.674] compiled for 1.11.0, module version = 1.0.0
    [ 12.674] ABI class: X.Org Server Extension, version 5.0
    [ 12.674] (==) AIGLX enabled
    [ 12.674] (II) Loading extension GLX
    [ 12.674] (II) LoadModule: "record"
    [ 12.674] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 12.681] (II) Module record: vendor="X.Org Foundation"
    [ 12.681] compiled for 1.11.0, module version = 1.13.0
    [ 12.681] Module class: X.Org Server Extension
    [ 12.681] ABI class: X.Org Server Extension, version 5.0
    [ 12.681] (II) Loading extension RECORD
    [ 12.681] (II) LoadModule: "dri"
    [ 12.681] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 12.696] (II) Module dri: vendor="X.Org Foundation"
    [ 12.696] compiled for 1.11.0, module version = 1.0.0
    [ 12.696] ABI class: X.Org Server Extension, version 5.0
    [ 12.696] (II) Loading extension XFree86-DRI
    [ 12.696] (II) LoadModule: "dri2"
    [ 12.696] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 12.696] (II) Module dri2: vendor="X.Org Foundation"
    [ 12.696] compiled for 1.11.0, module version = 1.2.0
    [ 12.696] ABI class: X.Org Server Extension, version 5.0
    [ 12.696] (II) Loading extension DRI2
    [ 12.696] (==) Matched intel as autoconfigured driver 0
    [ 12.696] (==) Matched vesa as autoconfigured driver 1
    [ 12.696] (==) Matched fbdev as autoconfigured driver 2
    [ 12.696] (==) Assigned the driver to the xf86ConfigLayout
    [ 12.696] (II) LoadModule: "intel"
    [ 12.727] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 12.739] (II) Module intel: vendor="X.Org Foundation"
    [ 12.739] compiled for 1.10.99.902, module version = 2.16.0
    [ 12.739] Module class: X.Org Video Driver
    [ 12.739] ABI class: X.Org Video Driver, version 11.0
    [ 12.739] (II) LoadModule: "vesa"
    [ 12.739] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 12.740] (II) Module vesa: vendor="X.Org Foundation"
    [ 12.740] compiled for 1.10.99.902, module version = 2.3.0
    [ 12.740] Module class: X.Org Video Driver
    [ 12.740] ABI class: X.Org Video Driver, version 11.0
    [ 12.740] (II) LoadModule: "fbdev"
    [ 12.740] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 12.740] (II) Module fbdev: vendor="X.Org Foundation"
    [ 12.740] compiled for 1.10.99.902, module version = 0.4.2
    [ 12.740] ABI class: X.Org Video Driver, version 11.0
    [ 12.740] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server
    [ 12.741] (II) VESA: driver for VESA chipsets: vesa
    [ 12.741] (II) FBDEV: driver for framebuffer: fbdev
    [ 12.741] (++) using VT number 7
    [ 12.745] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 12.745] (WW) Falling back to old probe method for vesa
    [ 12.745] (WW) Falling back to old probe method for fbdev
    [ 12.745] (II) Loading sub module "fbdevhw"
    [ 12.745] (II) LoadModule: "fbdevhw"
    [ 12.745] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 12.755] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 12.755] compiled for 1.11.0, module version = 0.0.2
    [ 12.755] ABI class: X.Org Video Driver, version 11.0
    [ 12.756] drmOpenDevice: node name is /dev/dri/card0
    [ 12.756] drmOpenDevice: open result is 8, (OK)
    [ 12.756] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    [ 12.756] drmOpenDevice: node name is /dev/dri/card0
    [ 12.756] drmOpenDevice: open result is 8, (OK)
    [ 12.756] drmOpenByBusid: drmOpenMinor returns 8
    [ 12.756] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    [ 12.756] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 12.756] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 12.756] (==) intel(0): RGB weight 888
    [ 12.756] (==) intel(0): Default visual is TrueColor
    [ 12.756] (II) intel(0): Integrated Graphics Chipset: Intel(R) Arrandale
    [ 12.756] (--) intel(0): Chipset: "Arrandale"
    [ 12.756] (**) intel(0): Relaxed fencing enabled
    [ 12.756] (**) intel(0): Wait on SwapBuffers? enabled
    [ 12.756] (**) intel(0): Triple buffering? enabled
    [ 12.756] (**) intel(0): Framebuffer tiled
    [ 12.756] (**) intel(0): Pixmaps tiled
    [ 12.756] (**) intel(0): 3D buffers tiled
    [ 12.756] (**) intel(0): SwapBuffers wait enabled
    [ 12.756] (==) intel(0): video overlay key set to 0x101fe
    [ 12.756] (II) intel(0): Output LVDS1 has no monitor section
    [ 12.756] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
    [ 12.756] (II) intel(0): Output VGA1 has no monitor section
    [ 12.778] (II) intel(0): Output HDMI1 has no monitor section
    [ 12.816] (II) intel(0): Output DP1 has no monitor section
    [ 12.816] (II) intel(0): EDID for output LVDS1
    [ 12.816] (II) intel(0): Manufacturer: AUO Model: 223c Serial#: 0
    [ 12.816] (II) intel(0): Year: 2010 Week: 0
    [ 12.816] (II) intel(0): EDID Version: 1.4
    [ 12.816] (II) intel(0): Digital Display Input
    [ 12.816] (II) intel(0): 6 bits per channel
    [ 12.816] (II) intel(0): Digital interface is undefined
    [ 12.816] (II) intel(0): Max Image Size [cm]: horiz.: 31 vert.: 17
    [ 12.816] (II) intel(0): Gamma: 2.20
    [ 12.816] (II) intel(0): No DPMS capabilities specified
    [ 12.816] (II) intel(0): Supported color encodings: RGB 4:4:4
    [ 12.816] (II) intel(0): First detailed timing is preferred mode
    [ 12.816] (II) intel(0): Preferred mode is native pixel format and refresh rate
    [ 12.816] (II) intel(0): redX: 0.607 redY: 0.349 greenX: 0.329 greenY: 0.550
    [ 12.816] (II) intel(0): blueX: 0.147 blueY: 0.136 whiteX: 0.313 whiteY: 0.329
    [ 12.816] (II) intel(0): Manufacturer's mask: 0
    [ 12.817] (II) intel(0): Supported detailed timing:
    [ 12.817] (II) intel(0): clock: 69.3 MHz Image Size: 309 x 173 mm
    [ 12.817] (II) intel(0): h_active: 1366 h_sync: 1404 h_sync_end 1426 h_blank_end 1436 h_border: 0
    [ 12.817] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 803 v_border: 0
    [ 12.817] (II) intel(0): Supported detailed timing:
    [ 12.817] (II) intel(0): clock: 46.2 MHz Image Size: 309 x 173 mm
    [ 12.817] (II) intel(0): h_active: 1366 h_sync: 1404 h_sync_end 1426 h_blank_end 1436 h_border: 0
    [ 12.817] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 803 v_border: 0
    [ 12.817] (II) intel(0): Unknown vendor-specific block 2
    [ 12.817] (II) intel(0): EDID (in hex):
    [ 12.817] (II) intel(0): 00ffffffffffff0006af3c2200000000
    [ 12.817] (II) intel(0): 00140104901f11780297f59b59548c25
    [ 12.817] (II) intel(0): 22505400000001010101010101010101
    [ 12.817] (II) intel(0): 010101010101121b5646500023302616
    [ 12.817] (II) intel(0): 360035ad100000180c12564650002330
    [ 12.817] (II) intel(0): 2616360035ad10000018000000000000
    [ 12.817] (II) intel(0): 00000000000000000000000000000002
    [ 12.817] (II) intel(0): 000c33f90a3c641f14226e202020007d
    [ 12.817] (II) intel(0): EDID vendor "AUO", prod id 8764
    [ 12.817] (II) intel(0): Printing DDC gathered Modelines:
    [ 12.817] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1404 1426 1436 768 771 777 803 -hsync -vsync (48.3 kHz)
    [ 12.817] (II) intel(0): Modeline "1366x768"x0.0 46.20 1366 1404 1426 1436 768 771 777 803 -hsync -vsync (32.2 kHz)
    [ 12.817] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 12.817] (II) intel(0): Printing probed modes for output LVDS1
    [ 12.817] (II) intel(0): Modeline "1366x768"x60.1 69.30 1366 1404 1426 1436 768 771 777 803 -hsync -vsync (48.3 kHz)
    [ 12.817] (II) intel(0): Modeline "1366x768"x40.1 46.20 1366 1404 1426 1436 768 771 777 803 -hsync -vsync (32.2 kHz)
    [ 12.817] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 12.817] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 12.817] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 12.817] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 12.817] (II) intel(0): EDID for output VGA1
    [ 12.839] (II) intel(0): EDID for output HDMI1
    [ 12.880] (II) intel(0): EDID for output DP1
    [ 12.880] (II) intel(0): Output LVDS1 connected
    [ 12.880] (II) intel(0): Output VGA1 disconnected
    [ 12.880] (II) intel(0): Output HDMI1 disconnected
    [ 12.880] (II) intel(0): Output DP1 disconnected
    [ 12.880] (II) intel(0): Using exact sizes for initial modes
    [ 12.880] (II) intel(0): Output LVDS1 using initial mode 1366x768
    [ 12.880] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 12.880] (II) intel(0): Kernel page flipping support detected, enabling
    [ 12.880] (**) intel(0): Display dimensions: (310, 170) mm
    [ 12.880] (**) intel(0): DPI set to (111, 114)
    [ 12.880] (II) Loading sub module "fb"
    [ 12.880] (II) LoadModule: "fb"
    [ 12.880] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 12.890] (II) Module fb: vendor="X.Org Foundation"
    [ 12.890] compiled for 1.11.0, module version = 1.0.0
    [ 12.890] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 12.890] (II) Loading sub module "dri2"
    [ 12.890] (II) LoadModule: "dri2"
    [ 12.890] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 12.890] (II) Module dri2: vendor="X.Org Foundation"
    [ 12.890] compiled for 1.11.0, module version = 1.2.0
    [ 12.890] ABI class: X.Org Server Extension, version 5.0
    [ 12.890] (II) UnloadModule: "vesa"
    [ 12.890] (II) Unloading vesa
    [ 12.890] (II) UnloadModule: "fbdev"
    [ 12.890] (II) Unloading fbdev
    [ 12.890] (II) UnloadModule: "fbdevhw"
    [ 12.890] (II) Unloading fbdevhw
    [ 12.890] (==) Depth 24 pixmap format is 32 bpp
    [ 12.890] (II) intel(0): [DRI2] Setup complete
    [ 12.890] (II) intel(0): [DRI2] DRI driver: i965
    [ 12.890] (II) intel(0): Allocated new frame buffer 1408x768 stride 5632, tiled
    [ 12.898] (II) UXA(0): Driver registered support for the following operations:
    [ 12.898] (II) solid
    [ 12.898] (II) copy
    [ 12.898] (II) composite (RENDER acceleration)
    [ 12.898] (II) put_image
    [ 12.898] (II) get_image
    [ 12.898] (==) intel(0): Backing store disabled
    [ 12.898] (==) intel(0): Silken mouse enabled
    [ 12.898] (II) intel(0): Initializing HW Cursor
    [ 12.960] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 12.960] (==) intel(0): DPMS enabled
    [ 12.960] (==) intel(0): Intel XvMC decoder enabled
    [ 12.960] (II) intel(0): Set up textured video
    [ 12.960] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 12.960] (II) intel(0): direct rendering: DRI2 Enabled
    [ 12.960] (==) intel(0): hotplug detection: "enabled"
    [ 12.960] (--) RandR disabled
    [ 12.960] (II) Initializing built-in extension Generic Event Extension
    [ 12.960] (II) Initializing built-in extension SHAPE
    [ 12.960] (II) Initializing built-in extension MIT-SHM
    [ 12.960] (II) Initializing built-in extension XInputExtension
    [ 12.960] (II) Initializing built-in extension XTEST
    [ 12.960] (II) Initializing built-in extension BIG-REQUESTS
    [ 12.960] (II) Initializing built-in extension SYNC
    [ 12.960] (II) Initializing built-in extension XKEYBOARD
    [ 12.960] (II) Initializing built-in extension XC-MISC
    [ 12.960] (II) Initializing built-in extension SECURITY
    [ 12.960] (II) Initializing built-in extension XINERAMA
    [ 12.960] (II) Initializing built-in extension XFIXES
    [ 12.960] (II) Initializing built-in extension RENDER
    [ 12.960] (II) Initializing built-in extension RANDR
    [ 12.960] (II) Initializing built-in extension COMPOSITE
    [ 12.960] (II) Initializing built-in extension DAMAGE
    [ 13.125] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 13.126] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 13.126] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 13.126] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 13.126] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 13.126] (II) AIGLX: Loaded and initialized i965
    [ 13.126] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 13.126] (II) intel(0): Setting screen physical size to 361 x 203
    [ 13.442] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 13.442] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 13.442] (II) LoadModule: "evdev"
    [ 13.456] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 13.462] (II) Module evdev: vendor="X.Org Foundation"
    [ 13.462] compiled for 1.10.99.902, module version = 2.6.0
    [ 13.462] Module class: X.Org XInput Driver
    [ 13.462] ABI class: X.Org XInput driver, version 13.0
    [ 13.462] (II) Using input driver 'evdev' for 'Power Button'
    [ 13.462] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 13.462] (**) Power Button: always reports core events
    [ 13.462] (**) Power Button: Device: "/dev/input/event2"
    [ 13.462] (--) Power Button: Found keys
    [ 13.462] (II) Power Button: Configuring as keyboard
    [ 13.462] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
    [ 13.462] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 13.462] (**) Option "xkb_rules" "evdev"
    [ 13.462] (**) Option "xkb_model" "evdev"
    [ 13.462] (**) Option "xkb_layout" "gb"
    [ 13.488] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
    [ 13.488] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 13.488] (II) Using input driver 'evdev' for 'Video Bus'
    [ 13.488] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 13.488] (**) Video Bus: always reports core events
    [ 13.488] (**) Video Bus: Device: "/dev/input/event4"
    [ 13.488] (--) Video Bus: Found keys
    [ 13.488] (II) Video Bus: Configuring as keyboard
    [ 13.488] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4/event4"
    [ 13.488] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 13.488] (**) Option "xkb_rules" "evdev"
    [ 13.488] (**) Option "xkb_model" "evdev"
    [ 13.488] (**) Option "xkb_layout" "gb"
    [ 13.488] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 13.489] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 13.489] (II) Using input driver 'evdev' for 'Power Button'
    [ 13.489] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 13.489] (**) Power Button: always reports core events
    [ 13.489] (**) Power Button: Device: "/dev/input/event1"
    [ 13.489] (--) Power Button: Found keys
    [ 13.489] (II) Power Button: Configuring as keyboard
    [ 13.489] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1/event1"
    [ 13.489] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 13.489] (**) Option "xkb_rules" "evdev"
    [ 13.489] (**) Option "xkb_model" "evdev"
    [ 13.489] (**) Option "xkb_layout" "gb"
    [ 13.489] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
    [ 13.489] (II) No input driver/identifier specified (ignoring)
    [ 13.489] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event5)
    [ 13.489] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 13.489] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 13.489] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 13.489] (**) Logitech USB Receiver: always reports core events
    [ 13.489] (**) Logitech USB Receiver: Device: "/dev/input/event5"
    [ 13.489] (--) Logitech USB Receiver: Found keys
    [ 13.489] (II) Logitech USB Receiver: Configuring as keyboard
    [ 13.489] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input5/event5"
    [ 13.489] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 9)
    [ 13.489] (**) Option "xkb_rules" "evdev"
    [ 13.489] (**) Option "xkb_model" "evdev"
    [ 13.489] (**) Option "xkb_layout" "gb"
    [ 13.490] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event6)
    [ 13.490] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 13.490] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 13.490] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 13.490] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 13.490] (**) Logitech USB Receiver: always reports core events
    [ 13.490] (**) Logitech USB Receiver: Device: "/dev/input/event6"
    [ 13.490] (--) Logitech USB Receiver: Found 20 mouse buttons
    [ 13.490] (--) Logitech USB Receiver: Found scroll wheel(s)
    [ 13.490] (--) Logitech USB Receiver: Found relative axes
    [ 13.490] (--) Logitech USB Receiver: Found x and y relative axes
    [ 13.490] (--) Logitech USB Receiver: Found absolute axes
    [ 13.490] (--) Logitech USB Receiver: Found keys
    [ 13.490] (II) Logitech USB Receiver: Configuring as mouse
    [ 13.490] (II) Logitech USB Receiver: Configuring as keyboard
    [ 13.490] (II) Logitech USB Receiver: Adding scrollwheel support
    [ 13.490] (**) Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 13.490] (**) Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 13.490] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/input/input6/event6"
    [ 13.490] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 10)
    [ 13.490] (**) Option "xkb_rules" "evdev"
    [ 13.490] (**) Option "xkb_model" "evdev"
    [ 13.490] (**) Option "xkb_layout" "gb"
    [ 13.490] (II) Logitech USB Receiver: initialized for relative axes.
    [ 13.490] (WW) Logitech USB Receiver: ignoring absolute axes.
    [ 13.490] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 13.490] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 13.490] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 13.490] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 13.490] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 13.490] (II) No input driver/identifier specified (ignoring)
    [ 13.491] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event7)
    [ 13.491] (II) No input driver/identifier specified (ignoring)
    [ 13.491] (II) config/udev: Adding input device HDA Intel HP Out at Ext Left Jack (/dev/input/event10)
    [ 13.491] (II) No input driver/identifier specified (ignoring)
    [ 13.491] (II) config/udev: Adding input device HDA Intel HDMI/DP (/dev/input/event11)
    [ 13.491] (II) No input driver/identifier specified (ignoring)
    [ 13.491] (II) config/udev: Adding input device HDA Intel Mic at Ext Left Jack (/dev/input/event9)
    [ 13.491] (II) No input driver/identifier specified (ignoring)
    [ 13.491] (II) config/udev: Adding input device HP Webcam (/dev/input/event15)
    [ 13.492] (**) HP Webcam: Applying InputClass "evdev keyboard catchall"
    [ 13.492] (II) Using input driver 'evdev' for 'HP Webcam'
    [ 13.492] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 13.492] (**) HP Webcam: always reports core events
    [ 13.492] (**) HP Webcam: Device: "/dev/input/event15"
    [ 13.492] (--) HP Webcam: Found keys
    [ 13.492] (II) HP Webcam: Configuring as keyboard
    [ 13.492] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input15/event15"
    [ 13.492] (II) XINPUT: Adding extended input device "HP Webcam" (type: KEYBOARD, id 11)
    [ 13.492] (**) Option "xkb_rules" "evdev"
    [ 13.492] (**) Option "xkb_model" "evdev"
    [ 13.492] (**) Option "xkb_layout" "gb"
    [ 13.492] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
    [ 13.492] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 13.492] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 13.492] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 13.492] (**) AT Translated Set 2 keyboard: always reports core events
    [ 13.492] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event3"
    [ 13.492] (--) AT Translated Set 2 keyboard: Found keys
    [ 13.492] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 13.492] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
    [ 13.492] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
    [ 13.492] (**) Option "xkb_rules" "evdev"
    [ 13.492] (**) Option "xkb_model" "evdev"
    [ 13.492] (**) Option "xkb_layout" "gb"
    [ 13.492] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event13)
    [ 13.492] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 13.492] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 13.492] (II) LoadModule: "synaptics"
    [ 13.493] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 13.506] (II) Module synaptics: vendor="X.Org Foundation"
    [ 13.506] compiled for 1.11.0, module version = 1.5.0
    [ 13.506] Module class: X.Org XInput Driver
    [ 13.506] ABI class: X.Org XInput driver, version 13.0
    [ 13.506] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 13.506] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 13.506] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 13.506] (**) Option "Device" "/dev/input/event13"
    [ 13.813] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5456
    [ 13.813] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4456
    [ 13.813] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 13.813] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 0
    [ 13.813] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
    [ 13.813] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 13.813] (**) Option "TapButton1" "1"
    [ 13.813] (**) Option "TapButton2" "2"
    [ 13.813] (**) Option "TapButton3" "3"
    [ 13.933] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 13.933] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 14.053] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input13/event13"
    [ 14.053] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
    [ 14.053] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 14.053] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    [ 14.053] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.040
    [ 14.053] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 14.053] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 14.053] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 14.053] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 14.053] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 14.054] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 14.054] (II) No input driver/identifier specified (ignoring)
    [ 14.054] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/event12)
    [ 14.054] (II) No input driver/identifier specified (ignoring)
    [ 14.054] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/js0)
    [ 14.054] (II) No input driver/identifier specified (ignoring)
    [ 14.054] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
    [ 14.054] (II) No input driver/identifier specified (ignoring)
    [ 14.054] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event14)
    [ 14.055] (**) HP WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 14.055] (II) Using input driver 'evdev' for 'HP WMI hotkeys'
    [ 14.055] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 14.055] (**) HP WMI hotkeys: always reports core events
    [ 14.055] (**) HP WMI hotkeys: Device: "/dev/input/event14"
    [ 14.055] (--) HP WMI hotkeys: Found keys
    [ 14.055] (II) HP WMI hotkeys: Configuring as keyboard
    [ 14.055] (**) Option "config_info" "udev:/sys/devices/virtual/input/input14/event14"
    [ 14.055] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD, id 14)
    [ 14.055] (**) Option "xkb_rules" "evdev"
    [ 14.055] (**) Option "xkb_model" "evdev"
    [ 14.055] (**) Option "xkb_layout" "gb"
    [ 14.079] (II) intel(0): EDID vendor "AUO", prod id 8764
    [ 14.079] (II) intel(0): Printing DDC gathered Modelines:
    [ 14.079] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1404 1426 1436 768 771 777 803 -hsync -vsync (48.3 kHz)
    [ 14.079] (II) intel(0): Modeline "1366x768"x0.0 46.20 1366 1404 1426 1436 768 771 777 803 -hsync -vsync (32.2 kHz)
    [ 16.079] (II) intel(0): EDID vendor "AUO", prod id 8764
    [ 16.079] (II) intel(0): Printing DDC gathered Modelines:
    [ 16.079] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1404 1426 1436 768 771 777 803 -hsync -vsync (48.3 kHz)
    [ 16.079] (II) intel(0): Modeline "1366x768"x0.0 46.20 1366 1404 1426 1436 768 771 777 803 -hsync -vsync (32.2 kHz)
    [ 16.141] (II) intel(0): EDID vendor "AUO", prod id 8764
    [ 16.141] (II) intel(0): Printing DDC gathered Modelines:
    [ 16.141] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1404 1426 1436 768 771 777 803 -hsync -vsync (48.3 kHz)
    [ 16.141] (II) intel(0): Modeline "1366x768"x0.0 46.20 1366 1404 1426 1436 768 771 777 803 -hsync -vsync (32.2 kHz)
    [ 16.208] (II) intel(0): EDID vendor "AUO", prod id 8764
    [ 16.208] (II) inte

  • Systemd Errors From Deluge Group and gvfs Permission [SOLVED]

    Have a few things that I have not been able to find a fix for.
    The Deluge group is unknown and a gvfs permission problem.  I've tried reinstalled both packages.  I've searched and found inf regarding both, but nothing that has worked for me so far.
    [jeff@Arch2010p5 ~]$ systemctl --failed
    UNIT LOAD ACTIVE SUB JOB DESCRIPTION
    systemd-tmpfiles-clean.service loaded failed failed Cleanup of Temporary Directories
    systemd-tmpfiles-setup.service loaded failed failed Recreate Volatile Files and Directories
    LOAD = Reflects whether the unit definition was properly loaded.
    ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
    SUB = The low-level unit activation state, values depend on unit type.
    JOB = Pending job for the unit.
    2 loaded units listed. Pass --all to see loaded but inactive units, too.
    To show all installed unit files use 'systemctl list-unit-files'.
    [root@Arch2010p5 jeff]# systemctl status systemd-tmpfiles-clean.service
    systemd-tmpfiles-clean.service - Cleanup of Temporary Directories
    Loaded: loaded (/usr/lib/systemd/system/systemd-tmpfiles-clean.service; static)
    Active: failed (Result: exit-code) since Thu, 2012-11-15 11:07:19 PST; 56min ago
    Docs: man:tmpfiles.d(5)
    Process: 1015 ExecStart=/usr/bin/systemd-tmpfiles --clean (code=exited, status=1/FAILURE)
    CGroup: name=systemd:/system/systemd-tmpfiles-clean.service
    Nov 15 11:07:19 Arch2010p5 systemd[1]: Starting Cleanup of Temporary Directories...
    Nov 15 11:07:19 Arch2010p5 systemd-tmpfiles[1015]: [/usr/lib/tmpfiles.d/deluge.conf:1] Unknown group 'deluge'.
    Nov 15 11:07:19 Arch2010p5 systemd-tmpfiles[1015]: stat(/run/user/1000/gvfs) failed: Permission denied
    Nov 15 11:07:19 Arch2010p5 systemd[1]: systemd-tmpfiles-clean.service: main process exited, code=exited, status=1/FAILURE
    Nov 15 11:07:19 Arch2010p5 systemd[1]: Failed to start Cleanup of Temporary Directories.
    Nov 15 11:07:19 Arch2010p5 systemd[1]: Unit systemd-tmpfiles-clean.service entered failed state
    [root@Arch2010p5 jeff]# systemctl status systemd-tmpfiles-setup.service
    systemd-tmpfiles-setup.service - Recreate Volatile Files and Directories
    Loaded: loaded (/usr/lib/systemd/system/systemd-tmpfiles-setup.service; static)
    Active: failed (Result: exit-code) since Thu, 2012-11-15 10:52:44 PST; 20min ago
    Docs: man:tmpfiles.d(5)
    Main PID: 377 (code=exited, status=1/FAILURE)
    CGroup: name=systemd:/system/systemd-tmpfiles-setup.service
    Nov 15 10:52:44 Arch2010p5 systemd[1]: systemd-tmpfiles-setup.service: main process exited, code=exited, status=1/FAILURE
    Nov 15 10:52:44 Arch2010p5 systemd[1]: Failed to start Recreate Volatile Files and Directories.
    Nov 15 10:52:44 Arch2010p5 systemd[1]: Unit systemd-tmpfiles-setup.service entered failed state
    [root@Arch2010p5 jeff]# journalctl -f /usr/bin/systemd-tmpfiles
    -- Logs begin at Thu, 2012-11-01 15:56:20 PDT. --
    Nov 15 09:46:50 Arch2010p5 systemd-tmpfiles[923]: [/usr/lib/tmpfiles.d/deluge.conf:1] Unknown group 'deluge'.
    Nov 15 09:46:50 Arch2010p5 systemd-tmpfiles[923]: stat(/run/user/1000/gvfs) failed: Permission denied
    -- Reboot --
    Nov 15 09:55:33 Arch2010p5 systemd-tmpfiles[361]: [/usr/lib/tmpfiles.d/deluge.conf:1] Unknown group 'deluge'.
    -- Reboot --
    Nov 15 10:02:35 Arch2010p5 systemd-tmpfiles[388]: [/usr/lib/tmpfiles.d/deluge.conf:1] Unknown group 'deluge'.
    Nov 15 10:17:10 Arch2010p5 systemd-tmpfiles[971]: [/usr/lib/tmpfiles.d/deluge.conf:1] Unknown group 'deluge'.
    Nov 15 10:17:10 Arch2010p5 systemd-tmpfiles[971]: stat(/run/user/1000/gvfs) failed: Permission denied
    -- Reboot --
    Nov 15 10:41:34 Arch2010p5 systemd-tmpfiles[1151]: [/usr/lib/tmpfiles.d/deluge.conf:1] Unknown group 'deluge'.
    Nov 15 10:41:34 Arch2010p5 systemd-tmpfiles[1151]: stat(/run/user/1000/gvfs) failed: Permission denied
    -- Reboot --
    Nov 15 11:07:19 Arch2010p5 systemd-tmpfiles[1015]: [/usr/lib/tmpfiles.d/deluge.conf:1] Unknown group 'deluge'.
    Nov 15 11:07:19 Arch2010p5 systemd-tmpfiles[1015]: stat(/run/user/1000/gvfs) failed: Permission denied
    Last edited by jeff story (2012-11-16 10:20:45)

    Yes the deluge user is present, group deluge is not. I find the following quote from the wiki confusing though.
    Yea I have tried troubleshooting via the wiki and much more.
    wiki wrote:The default user for the Deluge daemon, is deluge, which is created upon package installation. You can change this in /etc/conf.d/deluged. Of course, the user needs to exist.
    So ....... Is the word daemon implied to also mean group?  If so, should user deluge belong to the group deluge?
    The user deluge currently belongs to no groups.
    Does the quote also imply that everything is ok as installed per default?
    If not, it should simply specify that the user has to manually set up <user x> to belong to <group y>.
    The last sentence further confuses things as far as I'm concerned. I'll try to guess the meaning of it.
    Of course user deluge exists if it is created by the installation.
    Is the sentence referring to the user deluge, the user(jeff) or who needs to belong to what?
    I'll update the wiki to clarify if I can get an answer and verify it on my system.
    Also I should mention that Deluge currently works great and also did before switching to systemd. Deluge is a default install as I have not changed any user or groups deluge.
    [root@Arch2010p5 jeff]# cat /etc/passwd | grep d
    daemon:x:2:2:daemon:/sbin:/bin/false
    nobody:x:99:99:nobody:/:/bin/false
    dbus:x:81:81:System message bus:/:/bin/false
    deluge:x:125:125:Deluge user:/srv/deluge:/bin/false
    smmsp:x:150:25:sendmail:/var/spool/mail:/bin/false
    git:x:998:998:git daemon user:/:/bin/bash
    gdm:x:120:120:Gnome Display Manager:/var/lib/gdm:/sbin/nologin
    uuidd:x:996:996::/:/sbin/nologin
    polkitd:x:102:102:Policy Kit Daemon:/:/bin/false
    [jeff@Arch2010p5 ~]$ cat /etc/group | grep d
    bin:x:1:root,bin,daemon
    daemon:x:2:root,bin,daemon
    adm:x:4:root,daemon,jeff
    disk:x:6:root,xbmc
    lp:x:7:daemon,jeff,remote
    uuidd:x:68:
    video:x:91:jeff,remote,xbmc
    audio:x:92:xbmc
    nobody:x:99:
    printadmin:x:1000:jeff
    gdm:x:120:
    [root@Arch2010p5 jeff]# groups deluge
    [root@Arch2010p5 jeff]#
    [root@Arch2010p5 jeff]# groups jeff
    adm lp wheel games video storage power vboxusers printadmin users
    /etc/conf.d/deluge
    OPTIONS=""
    WEB_OPTIONS=""
    EDITED TO ADD INFO
    Last edited by jeff story (2012-11-16 02:41:41)

  • [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.

  • Bash script: Rotate your wallpaper and SLiM theme at the same time

    EDIT;
    I've decided I should really thank Cerebral for his help with writing this script; this thank you should have been here from the get go.
    After writing:
    #!/usr/bin
    echo "Hello World!"
    I wrote a script to rotate my fluxbox background and SLiM theme at the same time, so I could have a contiuously changing background and still have a smooth transition from SLiM to fluxbox.  (It just looks so much cooler when both have matching backgrounds).  By the time you finish reading it, and configuring your box so it will work, you will probably have decided you could have writtin your own, better script to do the same thing.  But, on the off chance anybody finds use for it, here it is:
    (this should be obvious, but: don't run this script without at least reading the comments)
    #!/bin/bash
    #this is a script to rotate a number of backgrounds
    #to be shared by the fluxbox desktop and SLiM login manager.
    #it is the first meaningful script I've written. It may be
    #freely distributed and used with the understanding that you are
    #using it at your own risk.
    #Before running this script you need to check that your SLiM
    #themes are installed to the path /usr/share/slim/themes, which
    #is the defulat path for installation in Arch. Here are some
    #other things you need to set up:
    #1. create (if you don't have it) the directory /usr/share/wallpapers
    #2. create a wallpaper in /usr/share/wallpapers called 'dummy' by copying
    #you current wallpaper to that filename
    #3. set your window manager to display the wallpaper 'dummy', this works fine
    #using a style overlay in fluxbox, I haven't tested it with any other window
    #manager, but I don't see why this would cause a problem.
    #4. create a directory /usr/share/slim/themes/current, you can copy one of
    #your slim themes into that directory if you want. (this will prevent you
    #from seeing some error messages the first time you run the script)
    #5. define the names of the themes you want to rotate, in order for this
    #script to work, you must name them "themeNUMBER", where NUMBER is replaced
    #by an integer. Your themes must be numbered consecutively, start with 1
    # that is:
    #theme1 , theme2, theme3, etc. , theme305
    #If you don't number consecutively, this script will not run properly. You
    #must also define the total number of themes as "rotate_number"
    #6. Check if the script runs, if it does, you should change /etc/slim.conf to
    #use the theme "current"
    #7. This theme will now rotate your SLiM theme and wallpaper in such a way as
    #to make them match each other. Note that SLiM will not let you change themes
    #"on the fly", (as of July 6, 2008), so changes will not be apparent unless you
    #restart SLiM. I run the script before I run slim in my etc/rc.local local
    #script, so each time I reboot I get different wallpaper / login background.
    #Fred Drueck 2008
    #Define here all themes to be rotated and the total number of
    #themes to rotate:
    rotate_number=9
    theme1=/usr/share/slim/themes/default
    theme2=/usr/share/slim/themes/lake
    theme3=/usr/share/slim/themes/lunar
    theme4=/usr/share/slim/themes/flower2
    theme5=/usr/share/slim/themes/the-light
    theme6=/usr/share/slim/themes/mindlock
    theme7=/usr/share/slim/themes/parallel-dimensions
    theme8=/usr/share/slim/themes/wave
    theme9=/usr/share/slim/themes/fingerprint
    #check you are running this script as super-user:
    if [ $(id -u) != "0" ]; then
    echo "You must be the superuser to run this script" >&2
    exit 1
    fi
    echo "rotating themes"
    #figure out which theme is currently set, then name it as the variable
    #"last theme number", otherwise set last theme number as 0
    if [ -f /usr/share/slim/themes/current/current_theme_number ]
    then
    echo "checking current theme"
    cd /usr/share/slim/themes/current/
    eval last_theme_number=$(cat /usr/share/slim/themes/current/current_theme_number)
    echo $last_theme_number
    else
    echo "no theme is currently set, using theme 1"
    last_theme_number=0
    echo $1 > /usr/share/slim/themes/current/current_theme_number
    fi
    #set the new theme number
    eval new_theme_number=$(($(($last_theme_number % $rotate_number))+1))
    #select the new theme
    placeholder=theme
    eval new_theme=\$$placeholder$new_theme_number
    echo $new_theme
    #now clean out the "current" theme where I keep the current
    #theme for slim
    rm /usr/share/slim/themes/current/background*
    rm /usr/share/slim/themes/current/panel*
    rm /usr/share/slim/themes/current/slim.theme
    #the wildcards are there since the themes use jpg and png files
    cp $new_theme/background* /usr/share/slim/themes/current
    cp $new_theme/panel* /usr/share/slim/themes/current
    cp $new_theme/slim.theme /usr/share/slim/themes/current
    #increase the theme number, but first clear the old file
    rm /usr/share/slim/themes/current/current_theme_number
    echo $new_theme_number > /usr/share/slim/themes/current/current_theme_number
    #copy over the dummy wallpaper in "/usr/share/wallpapers" (with the theme
    #background file
    cp $new_theme/background* /usr/share/wallpapers/dummy
    exit 0
    Last edited by pseudonomous (2008-07-07 21:59:42)

    oh i forgot to mention... its rotating while moving. i.e. is doesn't have to stop rotate and then continue back to origin.

  • Nitrogen wallpaper switcher: Dual Screen wallpaper via bash?

    I've grown quite attached to a little script for my laptop that lets me randomly switch the background with nitrogen:
    #! /bin/bash
    WALLPAPERS="/home/elias/Pics/BackgroundShow"
    ALIST=( `ls -w1 $WALLPAPERS` )
    RANGE=${#ALIST[@]}
    let "number = $RANDOM"
    let LASTNUM="`cat $WALLPAPERS/.last` + $number"
    let "number = $LASTNUM % $RANGE"
    echo $number > $WALLPAPERS/.last
    nitrogen --set-zoom-fill --save $WALLPAPERS/${ALIST[$number]}           <---------- Just need to specify the screen here...
    I've had no luck finding how to change just screen 1 or 2 without the GUI.  If there's a way, I would just have a separate hotkey for both.  man nitrogen and nitrogen --help say nothing about setting for a particular screen. 
    Any help would be appreciated

    I'm playing with imlibsetroot, but it doesn't appear to have the same "zoom-fill" function, and if you set one at a time, it clears the other screen.  So you can shuffle both with this:
    #! /bin/bash
    WALLPAPERS="/home/elias/Pics/BackShow"
    ALIST=( `ls -w1 $WALLPAPERS` )
    RANGE=${#ALIST[@]}
    let "number = $RANDOM"
    let LASTNUM="`cat $WALLPAPERS/.last` + $number"
    let "number = $LASTNUM % $RANGE"
    echo $number > $WALLPAPERS/.last
    let "number2 = $RANDOM"
    let LASTNUM="`cat $WALLPAPERS/.last` + $number2"
    let "number2 = $LASTNUM % $RANGE"
    echo $number2 > $WALLPAPERS/.last
    imlibsetroot -x 0 -s $WALLPAPERS/${ALIST[$number]} -x 1 -s $WALLPAPERS/${ALIST[$number2]}
    the option -s scales the image until it fills either the x or y dimension leaving black space.  Of course I could crop or limit myself to images with the right aspect ratio, but that's not a solution.  The options seem fairly extensive, but I don't see a way to emulate "zoom-fill":
    usage: imlibsetroot [globalopts] {[screenopts] [imageopts] <filename>}+
    global options
    --help print usage information
    --version print version information
    --composite combine the images with the current root window
    --display DDD connect to X display DDD
    --store store the new root image to ~/.background.png
    --store FILE store the new root image to FILE
    --storeslices store the root image of each xinerama display
    as a seperate file. (Implies --store .)
    screen options
    -x s operate on the single virtual xinerama screen
    (default)
    -x e operate on all xinerama screens independently
    -x N operate on xinerama screen N
    image options
    -s scale pixmap to the current screen's size
    preserving the pixmap's original aspect ratio
    -s a scale pixmap to the current screen's size
    preserving the pixmap's original aspect ratio
    -s f scale pixmap to the current screen's size
    without regard to the pixmap's original
    aspect ratio
    -s N scale pixmap by N percent
    -s X,Y set the pixmap's width to X pixels and height
    to Y pixels
    -m {xy} mirror across the X/Y axis
    -r {r|rr|l|ll} rotate right/left once or twice
    -f {xy} flip the pixmap across the X/Y axis
    -p c center pixmap on both axes
    -p cx center pixmap on x
    -p cy center pixmap on y
    -p X,Y place pixmap at position X, Y on the current
    screen (current screen based coordinates)
    -t (integer tiling if combined with center
    --bg COLOR set background color (the area not covered by the
    image) to COLOR (COLOR may be a mnemonic, or a
    RRR,GGG,BBB triple) (may be used without an image)
    --bgcolor COLOR same as --bg

  • GDM and OpenBox - Wallpaper and background problem [SOLVED]

    I have a strange problem.
    I am using GDM as login manager. And I am using OpenBox as a window manager.
    As soon as GDM appears on the screen, my wifi connection is connected... so its good.
    But, when I login Feh loads my background picture and it disappears after few seconds..... I solved this modifying the autostart script (adding the sleep).
    Now background stays, BUT not always. Sometimes it disappears.... sometimes not.
    It seams that this problem is appearing randomly.
    So my question is:
    Is there a way to disable Gnomes (GDMs) background color and picture after loading openbox through GDM?
    Last edited by webmasteryoda (2011-06-26 10:50:10)

    azleifel wrote:
    It will apply to gnome as well, so if gnome-settings-daemon is your problem then you either need to choose one environment or perhaps do some settings adjustment with gconftool-2 when you log into each environment.  I didn't try this but settings for openbox could be changed with a couple of gconftool-2 lines in autostart.sh, e.g.
    gconftool-2 --set --type bool /desktop/gnome/background/draw_background "false" &
    and settings for gnome could be changed from a DE-specific ("OnlyShowIn=GNOME") .desktop file or two in $HOME/.config/autostart.
    I tried this, but it didnt work. Its a Gnome 3.
    I dont understand second part of your post... ("OnlyShowIn=GNOME")

  • [SOLVED]CompizStandalone-GDM,ugly theme,keyboard and desktop handling

    Hi, i believe i have successfully installed compiz as standalone but i have a few issues;
    1. Fist of all i cannot change my keyboard layout. I tried this https://wiki.archlinux.org/index.php/Xo … t-Plugging and i have following in my xorg.conf but no luck
    Section "InputClass"
    Identifier "Keyboard Defaults"
    MatchIsKeyboard "yes"
    Option "XkbLayout" "tr"
    Option "XkbVariant" "alt"
    EndSection
    2. Second, i have to do Ctrl+Alt+F1 then startx to get compiz working. Is there any way that i can add this to GDM just like any desktop environment ?
    3. How do i use the desktop ? I have set up a wallpaper in CCSM and folders are opening in Firefox.
    4. Lastly, themes look ugly. Is this normal or did i miss something ?
    Last edited by Selo (2012-03-12 19:08:34)

    1. I'm not sure how to help here; I think xmodmap migh tbe involved? I use the standard keyboard layout and switch to kana input with Anthy through IBUS.
    2. I use a .desktop file with LXDM and a script to accomplish this.
    The .desktop file (/usr/share/xsessions/compiz.desktop):
    [Desktop Entry]
    Encoding=UTF-8
    Type=XSession
    Exec=/usr/bin/start-compiz
    TryExec=/usr/bin/start-compiz
    Name=Compiz Standalone
    The script:
    #!/bin/bash
    # Wallpaper
    nitrogen --restore
    # Sound
    SOUND_THEME='ootw'
    jackd -rd alsa -Hs &
    amixer set Master 80%
    xset -b&
    # PATH fix
    PATH=${PATH}$(grep ^PATH /home/mouse/.bashrc | cut -d \} -f 2)
    export PATH
    # TZ
    TZ='GMT'
    export TZ
    # VST path
    VST_PATH='/home/mouse/.vst/'
    export VST_PATH
    # Dockbar
    avant-window-navigator &
    # Tray applets
    pnmixer&
    wicd-gtk -t&
    batti&
    # Once!
    #urxvt -tr -sh 10 -e tmux
    # Keys
    xbindkeys&
    # Beep!
    mplayer "/usr/share/sounds/${SOUND_THEME}/stereo/desktop-login.ogg"&
    # Compiz
    fusion-icon # NOTE: The script stops here, and picks up when I select 'Quit' in Fusion-Icon
    # Boop!
    mplayer "/usr/share/sounds/${SOUND_THEME}/stereo/desktop-logout.ogg" # After this, the script exits and returns me to LXDM
    3. You can set up wallpaper either through CCSM or Nitrogen, Feh, what-have-you. I assume you mean desktop icons when you say "use the desktop". For those you can use community/idesk.
    4. You need to set the GTK theme. Try community/lxappearance.

  • [SOLVED] Problem with GDM and Gnome3

    Okay, the Topic was more of a trick. Actually I'm havingt two seperate issues; I googled and such, but have not found anything that really answers my question.
    First Issue:
    I have my gdm.service enabled, so it starts on statup. I boot into runlevel 3. Now, whenever I type "startx" the screen becomes black, and after a while I come back into my TTY with something along the lines of "Stopping X server". But without any error, etc. It justs stops. When I know do a systemctl status on my gdm.service, I become that:
    gdm.service - GNOME Display Manager
    Loaded: loaded (/usr/lib/systemd/system/gdm.service; enabled)
    Active: inactive (dead)
    Feb 03 16:47:31 thunderlaptop gdm-simple-slave[475]: WARNING: Failed to give slave programs access to the display. Trying to proceed.
    Feb 03 16:48:22 thunderlaptop gdm-password][623]: pam_unix(gdm-password:auth): authentication failure; logname=(unknown) uid=0 euid=0 tty=:0 ruser= rhost= user=thunderuser
    Feb 03 16:48:33 thunderlaptop gdm-password][626]: pam_unix(gdm-password:session): session opened for user thunderuser by (unknown)(uid=0)
    Feb 03 16:48:33 thunderlaptop gdm-simple-slave[475]: WARNING: Failed to remove slave program access to the display. Trying to proceed.
    Feb 03 17:03:17 thunderlaptop systemd[1]: Stopping GNOME Display Manager...
    Feb 03 17:03:17 thunderlaptop gdm-simple-slave[475]: GLib-GObject-CRITICAL: g_object_ref: assertion `object->ref_count > 0' failed
    Feb 03 17:03:17 thunderlaptop gdm-simple-slave[475]: WARNING: Child process 626 was already dead.
    Feb 03 17:03:17 thunderlaptop gdm-simple-slave[475]: WARNING: Unable to kill session worker process
    Feb 03 17:03:18 thunderlaptop gdm-simple-slave[475]: GLib-GObject-CRITICAL: g_object_unref: assertion `object->ref_count > 0' failed
    Feb 03 17:03:18 thunderlaptop systemd[1]: Stopped GNOME Display Manager.
    After I start it, it puts me into the login screen and I can work just fine with Gnome3. I have no clue where the issuse might be.
    The second is simple to explain - I have no Network symbol in the upper right corner, and Gnome3 says the network service is not compatible with my system.
    Oh, and another issue. When I type something too long, the text does not start a new line in my console resulting in some Visual problems.
    Thanks in advance.
    Last edited by ThunderRush (2013-02-04 12:36:57)

    Blasphemist wrote:
    Isn't GDM starting X and Gnome as it should for you? You shouldn't need to start X unless you want more than one X session. Is that what you are trying to do? After installing Gnome and Gnome-extra, I just use this command to enable GDM. systemctl enable gdm
    What is your networking configuration. The beginners guide has been updated within the last week or two about this due to a change in network interface naming. Please give that a look.
    Which console and shell are you using? Does it have a line wrap configuration option. This is normally automatic but those are my first questions.
    Well, as I said, I start into runlevel 3 and want to start X by myself.
    Yes, I realise that it is not wlan0 anymore, and I know the name of my wlan-interface. It works awesomely fine via wifi-menu <interface>, but gnome3 seems to have struggles? Have not found anything about that.
    I'm using the gnome shell with bash. But the problem occours in a tty2 console as well. I guess it is a problem with .bashrc, but I have no idea what it might be.
    Edit:
    So, the fixes for the problems are...
    1. Reinstall Linux. My Pam was fucked up somewhoe.
    2. systemctl enable NetworkManager and not networkmanager. Please kill me.
    3. I wrote the Colorcodes and escape-characters in a variable and used that in the actual PS1. That fixed it, and the guys over at bash suggest that too.
    Last edited by ThunderRush (2013-02-04 12:36:42)

  • Can't login after fresh installing gnome using gdm 3.2 [SOLVED]

    I don't know if this topic was already solved, I hope someone can help me about this. I have a fresh install of arch linux (just yesterday) and installed gnome and gnome-extra packages. As usual, I go with the procedure of editing my .xinitrc (exec ck-launch-session dbus-launch gnome-session), rc.conf (...dbus networkmanager...), inittab (runlvl 5, x:5......gdm). After a reboot, gdm screen appeared, I can't find my account, then there were two choices, "Sign in" and "Not listed..."). I clicked Not listed, then entered my user and password, after that, it responded: Authentication failure/failed... or something like that. I tried it again and it's the same. Temporarily, I'm using startx or slim (depends on my mood). Can anyone help me?
    here's my gdm's 0.log and 0-greeter.log respectively:
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at [url]http://bugs.freedesktop.org[/url]/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See [url]http://wiki.x.org/wiki/GitPage[/url] for git access instructions.
    X.Org X Server 1.11.1.901 (1.11.2 RC 1)
    Release Date: 2011-10-14
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.0-ARCH i686
    Current Operating System: Linux espionage 3.0-ARCH #1 SMP PREEMPT Wed Oct 19 12:14:48 UTC 2011 i686
    Kernel command line: root=/dev/disk/by-uuid/9645b27b-41ee-461a-b4f0-f5ba1794542c ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Build Date: 24 October 2011 12:26:09PM
    Current version of pixman: 0.22.2
    Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Thu Oct 27 19:43:23 2011
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    (==) No Layout section. Using the first Screen section.
    (==) No screen section available. Using defaults.
    (**) |-->Screen "Default Screen Section" (0)
    (**) | |-->Monitor "<default monitor>"
    (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    Entry deleted from font path.
    (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    (--) PCI:*(0:0:2:0) 8086:27a2:1025:012f rev 3, Mem @ 0xdc100000/524288, 0xc0000000/268435456, 0xdc200000/262144, I/O @ 0x00001800/8
    (--) PCI: (0:0:2:1) 8086:27a6:1025:012f rev 3, Mem @ 0xdc180000/524288
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.11.1.901, module version = 1.0.0
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.11.1.901, module version = 1.0.0
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.11.1.901, module version = 1.0.0
    (==) AIGLX enabled
    (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.11.1.901, module version = 1.13.0
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.11.1.901, module version = 1.0.0
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.11.1.901, module version = 1.2.0
    (==) Matched intel as autoconfigured driver 0
    (==) Matched vesa as autoconfigured driver 1
    (==) Matched fbdev as autoconfigured driver 2
    (==) Assigned the driver to the xf86ConfigLayout
    (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.10.99.902, module version = 2.16.0
    (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    (II) Module vesa: vendor="X.Org Foundation"
    compiled for 1.11.1, module version = 2.3.0
    (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    (II) Module fbdev: vendor="X.Org Foundation"
    compiled for 1.10.99.902, module version = 0.4.2
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server
    (II) VESA: driver for VESA chipsets: vesa
    (II) FBDEV: driver for framebuffer: fbdev
    (++) using VT number 7
    (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    (WW) Falling back to old probe method for vesa
    (WW) Falling back to old probe method for fbdev
    (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    (II) Module fbdevhw: vendor="X.Org Foundation"
    compiled for 1.11.1.901, module version = 0.0.2
    (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GM
    (--) intel(0): Chipset: "945GM"
    (**) intel(0): Relaxed fencing disabled
    (**) intel(0): Wait on SwapBuffers? enabled
    (**) intel(0): Triple buffering? enabled
    (**) intel(0): Framebuffer tiled
    (**) intel(0): Pixmaps tiled
    (**) intel(0): 3D buffers tiled
    (**) intel(0): SwapBuffers wait enabled
    (==) intel(0): video overlay key set to 0x101fe
    (II) intel(0): Output LVDS1 has no monitor section
    (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
    (II) intel(0): Output VGA1 has no monitor section
    (II) intel(0): Output TV1 has no monitor section
    (II) intel(0): EDID for output LVDS1
    (II) intel(0): Manufacturer: SEC Model: 4442 Serial#: 0
    (II) intel(0): Year: 2006 Week: 0
    (II) intel(0): EDID Version: 1.3
    (II) intel(0): Digital Display Input
    (II) intel(0): Max Image Size [cm]: horiz.: 30 vert.: 19
    (II) intel(0): Gamma: 2.20
    (II) intel(0): No DPMS capabilities specified
    (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    (II) intel(0): First detailed timing is preferred mode
    (II) intel(0): redX: 0.580 redY: 0.340 greenX: 0.310 greenY: 0.550
    (II) intel(0): blueX: 0.155 blueY: 0.155 whiteX: 0.313 whiteY: 0.329
    (II) intel(0): Manufacturer's mask: 0
    (II) intel(0): Supported detailed timing:
    (II) intel(0): clock: 68.9 MHz Image Size: 303 x 190 mm
    (II) intel(0): h_active: 1280 h_sync: 1292 h_sync_end 1356 h_blank_end 1408 h_border: 0
    (II) intel(0): v_active: 800 v_sync: 803 v_sync_end 806 v_blanking: 816 v_border: 0
    (II) intel(0): Unknown vendor-specific block f
    (II) intel(0): SAMSUNG
    (II) intel(0): LTN141W3-L01
    (II) intel(0): EDID (in hex):
    (II) intel(0): 00ffffffffffff004ca3424400000000
    (II) intel(0): 00100103801e13780a87f594574f8c27
    (II) intel(0): 27505400000001010101010101010101
    (II) intel(0): 010101010101ee1a0080502010300c40
    (II) intel(0): 33002fbe100000190000000f00000000
    (II) intel(0): 00000000002387026400000000fe0053
    (II) intel(0): 414d53554e470a2020202020000000fe
    (II) intel(0): 004c544e31343157332d4c30310a0064
    (II) intel(0): EDID vendor "SEC", prod id 17474
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 68.94 1280 1292 1356 1408 800 803 806 816 -hsync -vsync (49.0 kHz)
    (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    (II) intel(0): Printing probed modes for output LVDS1
    (II) intel(0): Modeline "1280x800"x60.0 68.94 1280 1292 1356 1408 800 803 806 816 -hsync -vsync (49.0 kHz)
    (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) intel(0): EDID for output VGA1
    (II) intel(0): EDID for output TV1
    (II) intel(0): Output LVDS1 connected
    (II) intel(0): Output VGA1 disconnected
    (II) intel(0): Output TV1 disconnected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS1 using initial mode 1280x800
    (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    (II) intel(0): Kernel page flipping support detected, enabling
    (**) intel(0): Display dimensions: (300, 190) mm
    (**) intel(0): DPI set to (108, 106)
    (II) Loading /usr/lib/xorg/modules/libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.11.1.901, module version = 1.0.0
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.11.1.901, module version = 1.2.0
    (II) Unloading vesa
    (II) Unloading fbdev
    (II) Unloading fbdevhw
    (==) Depth 24 pixmap format is 32 bpp
    (II) intel(0): [DRI2] Setup complete
    (II) intel(0): [DRI2] DRI driver: i915
    (II) intel(0): Allocated new frame buffer 1280x800 stride 8192, tiled
    (II) UXA(0): Driver registered support for the following operations:
    (II) solid
    (II) copy
    (II) composite (RENDER acceleration)
    (II) put_image
    (II) get_image
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (==) intel(0): DPMS enabled
    (==) intel(0): Intel XvMC decoder disabled
    (II) intel(0): Set up textured video
    (II) intel(0): Set up overlay video
    (II) intel(0): direct rendering: DRI2 Enabled
    (==) intel(0): hotplug detection: "enabled"
    (--) RandR disabled
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_INTEL_swap_event
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: enabled GLX_SGI_make_current_read
    (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    (II) AIGLX: Loaded and initialized i915
    (II) GLX: Initialized DRI2 GL provider for screen 0
    (II) intel(0): Setting screen physical size to 338 x 211
    (II) config/udev: Adding input device Power Button (/dev/input/event3)
    (**) Power Button: Applying InputClass "evdev keyboard catchall"
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.10.99.902, module version = 2.6.0
    (II) Using input driver 'evdev' for 'Power Button'
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event3"
    (--) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    (II) config/udev: Adding input device Video Bus (/dev/input/event5)
    (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    (II) Using input driver 'evdev' for 'Video Bus'
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event5"
    (--) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    (II) No input driver/identifier specified (ignoring)
    (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    (II) Using input driver 'evdev' for 'Sleep Button'
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (**) Sleep Button: always reports core events
    (**) Sleep Button: Device: "/dev/input/event2"
    (--) Sleep Button: Found keys
    (II) Sleep Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
    (II) No input driver/identifier specified (ignoring)
    (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event7)
    (II) No input driver/identifier specified (ignoring)
    (II) config/udev: Adding input device A4TECH USB Device (/dev/input/event9)
    (**) A4TECH USB Device: Applying InputClass "evdev keyboard catchall"
    (II) Using input driver 'evdev' for 'A4TECH USB Device'
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (**) A4TECH USB Device: always reports core events
    (**) A4TECH USB Device: Device: "/dev/input/event9"
    (--) A4TECH USB Device: Found 1 mouse buttons
    (--) A4TECH USB Device: Found scroll wheel(s)
    (--) A4TECH USB Device: Found relative axes
    (--) A4TECH USB Device: Found absolute axes
    (--) A4TECH USB Device: Found x and y absolute axes
    (--) A4TECH USB Device: Found keys
    (II) A4TECH USB Device: Configuring as mouse
    (II) A4TECH USB Device: Configuring as keyboard
    (II) A4TECH USB Device: Adding scrollwheel support
    (**) A4TECH USB Device: YAxisMapping: buttons 4 and 5
    (**) A4TECH USB Device: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "A4TECH USB Device" (type: KEYBOARD, id 9)
    (EE) A4TECH USB Device: failed to initialize for relative axes.
    (WW) A4TECH USB Device: found 37 axes, limiting to 36.
    (II) A4TECH USB Device: initialized for absolute axes.
    (**) A4TECH USB Device: (accel) keeping acceleration scheme 1
    (**) A4TECH USB Device: (accel) acceleration profile 0
    (**) A4TECH USB Device: (accel) acceleration factor: 2.000
    (**) A4TECH USB Device: (accel) acceleration threshold: 4
    (II) config/udev: Adding input device A4TECH USB Device (/dev/input/js0)
    (II) No input driver/identifier specified (ignoring)
    (II) config/udev: Adding input device A4TECH USB Device (/dev/input/event10)
    (**) A4TECH USB Device: Applying InputClass "evdev pointer catchall"
    (II) Using input driver 'evdev' for 'A4TECH USB Device'
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (**) A4TECH USB Device: always reports core events
    (**) A4TECH USB Device: Device: "/dev/input/event10"
    (--) A4TECH USB Device: Found 20 mouse buttons
    (--) A4TECH USB Device: Found scroll wheel(s)
    (--) A4TECH USB Device: Found relative axes
    (--) A4TECH USB Device: Found x and y relative axes
    (II) A4TECH USB Device: Configuring as mouse
    (II) A4TECH USB Device: Adding scrollwheel support
    (**) A4TECH USB Device: YAxisMapping: buttons 4 and 5
    (**) A4TECH USB Device: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "A4TECH USB Device" (type: MOUSE, id 10)
    (II) A4TECH USB Device: initialized for relative axes.
    (**) A4TECH USB Device: (accel) keeping acceleration scheme 1
    (**) A4TECH USB Device: (accel) acceleration profile 0
    (**) A4TECH USB Device: (accel) acceleration factor: 2.000
    (**) A4TECH USB Device: (accel) acceleration threshold: 4
    (II) config/udev: Adding input device A4TECH USB Device (/dev/input/mouse1)
    (II) No input driver/identifier specified (ignoring)
    (II) config/udev: Adding input device Acer CrystalEye webcam (/dev/input/event11)
    (**) Acer CrystalEye webcam: Applying InputClass "evdev keyboard catchall"
    (II) Using input driver 'evdev' for 'Acer CrystalEye webcam'
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (**) Acer CrystalEye webcam: always reports core events
    (**) Acer CrystalEye webcam: Device: "/dev/input/event11"
    (--) Acer CrystalEye webcam: Found keys
    (II) Acer CrystalEye webcam: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Acer CrystalEye webcam" (type: KEYBOARD, id 11)
    (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    (--) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
    (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event8)
    (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
    compiled for 1.11.0, module version = 1.5.0
    (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    (**) SynPS/2 Synaptics TouchPad: always reports core events
    (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 0
    (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right scroll-buttons
    (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    (**) SynPS/2 Synaptics TouchPad: always reports core events
    (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
    (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.040
    (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    (II) No input driver/identifier specified (ignoring)
    (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    (II) No input driver/identifier specified (ignoring)
    (II) intel(0): EDID vendor "SEC", prod id 17474
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 68.94 1280 1292 1356 1408 800 803 806 816 -hsync -vsync (49.0 kHz)
    (II) intel(0): EDID vendor "SEC", prod id 17474
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 68.94 1280 1292 1356 1408 800 803 806 816 -hsync -vsync (49.0 kHz)
    (II) intel(0): EDID vendor "SEC", prod id 17474
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 68.94 1280 1292 1356 1408 800 803 806 816 -hsync -vsync (49.0 kHz)
    (II) intel(0): EDID vendor "SEC", prod id 17474
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 68.94 1280 1292 1356 1408 800 803 806 816 -hsync -vsync (49.0 kHz)
    (II) intel(0): EDID vendor "SEC", prod id 17474
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 68.94 1280 1292 1356 1408 800 803 806 816 -hsync -vsync (49.0 kHz)
    (II) intel(0): EDID vendor "SEC", prod id 17474
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 68.94 1280 1292 1356 1408 800 803 806 816 -hsync -vsync (49.0 kHz)
    (II) AIGLX: Suspending AIGLX clients for VT switch
    (II) Unloading synaptics
    (II) AT Translated Set 2 keyboard: Close
    (II) Unloading evdev
    (II) Acer CrystalEye webcam: Close
    (II) Unloading evdev
    (II) A4TECH USB Device: Close
    (II) Unloading evdev
    (II) A4TECH USB Device: Close
    (II) Unloading evdev
    (II) Sleep Button: Close
    (II) Unloading evdev
    (II) Video Bus: Close
    (II) Unloading evdev
    (II) Power Button: Close
    (II) Unloading evdev
    Server terminated successfully (0). Closing log file.
    gnome-session[1036]: DEBUG(+): Enabling debugging
    gnome-session[1036]: DEBUG(+): GsmXsmpServer: SESSION_MANAGER=local/espionage:@/tmp/.ICE-unix/1036,unix/espionage:/tmp/.ICE-unix/1036
    gnome-session[1036]: DEBUG(+): GsmShell: Not connected to the shell
    gnome-session[1036]: DEBUG(+): GsmManager: setting client store 0x9fe2638
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Adding handler 1: signum=4 (nil)
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Registering for 4 signals
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Adding handler 2: signum=7 (nil)
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Registering for 7 signals
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Adding handler 3: signum=11 (nil)
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Registering for 11 signals
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Adding handler 4: signum=6 (nil)
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Registering for 6 signals
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Adding handler 5: signum=5 (nil)
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Registering for 5 signals
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Adding handler 6: signum=8 0x8062560
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Registering for 8 signals
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Adding handler 7: signum=1 0x8062560
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Registering for 1 signals
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Adding handler 8: signum=10 0x8062560
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Registering for 10 signals
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Adding handler 9: signum=15 0x8062560
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Registering for 15 signals
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Adding handler 10: signum=2 0x8062560
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Registering for 2 signals
    gnome-session[1036]: DEBUG(+): fill: *** Getting session 'gdm-shell'
    gnome-session[1036]: DEBUG(+): fill: *** Looking if /var/lib/gdm/.config/gnome-session/sessions/gdm-shell.session is a valid session file
    gnome-session[1036]: DEBUG(+): Cannot use session '/var/lib/gdm/.config/gnome-session/sessions/gdm-shell.session': non-existing or invalid file.
    gnome-session[1036]: DEBUG(+): fill: *** Looking if /etc/xdg/gnome-session/sessions/gdm-shell.session is a valid session file
    gnome-session[1036]: DEBUG(+): Cannot use session '/etc/xdg/gnome-session/sessions/gdm-shell.session': non-existing or invalid file.
    gnome-session[1036]: DEBUG(+): fill: *** Looking if /usr/share/gdm/greeter/gnome-session/sessions/gdm-shell.session is a valid session file
    gnome-session[1036]: DEBUG(+): Cannot use session '/usr/share/gdm/greeter/gnome-session/sessions/gdm-shell.session': non-existing or invalid file.
    gnome-session[1036]: DEBUG(+): fill: *** Looking if /usr/share/gnome-session/sessions/gdm-shell.session is a valid session file
    gnome-session[1036]: 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[1036]: DEBUG(+): fill: *** Checking required components and providers
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking for file 'gnome-shell.desktop'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.config/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.local/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: found in XDG dirs: '/usr/share/gdm/greeter/applications/gnome-shell.desktop'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking for file 'gnome-settings-daemon.desktop'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.config/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.local/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: found in XDG dirs: '/etc/xdg/autostart/gnome-settings-daemon.desktop'
    gnome-session[1036]: DEBUG(+): fill: *** Done checking required components and providers
    gnome-session[1036]: DEBUG(+): fill: *** Adding required components
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking for file 'gnome-shell.desktop'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.config/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.local/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: found in XDG dirs: '/usr/share/gdm/greeter/applications/gnome-shell.desktop'
    gnome-session[1036]: DEBUG(+): GsmManager: read /usr/share/gdm/greeter/applications/gnome-shell.desktop
    gnome-session[1036]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App1 to store
    gnome-session[1036]: DEBUG(+): GsmManager: adding required app gnome-shell.desktop
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking for file 'gnome-settings-daemon.desktop'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.config/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/gnome/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/etc/xdg/autostart'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/var/lib/gdm/.local/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/gdm/greeter/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: Looking in '/usr/local/share/applications'
    gnome-session[1036]: DEBUG(+): GsmUtil: found in XDG dirs: '/etc/xdg/autostart/gnome-settings-daemon.desktop'
    gnome-session[1036]: DEBUG(+): GsmManager: read /etc/xdg/autostart/gnome-settings-daemon.desktop
    gnome-session[1036]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/App2 to store
    gnome-session[1036]: DEBUG(+): GsmManager: adding required app gnome-settings-daemon.desktop
    gnome-session[1036]: DEBUG(+): fill: *** Done adding required components
    gnome-session[1036]: DEBUG(+): fill: *** Adding default providers
    gnome-session[1036]: DEBUG(+): fill: *** Done adding default providers
    gnome-session[1036]: DEBUG(+): GsmManager: GSM starting to manage
    gnome-session[1036]: DEBUG(+): GsmManager: App startup summary
    gnome-session[1036]: DEBUG(+): GsmManager: Phase INITIALIZATION
    gnome-session[1036]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App2 app-id:gnome-settings-daemon.desktop is-disabled:0 is-conditionally-disabled:0
    gnome-session[1036]: DEBUG(+): GsmManager: Phase WINDOW_MANAGER
    gnome-session[1036]: DEBUG(+): GsmManager: Phase PANEL
    gnome-session[1036]: DEBUG(+): GsmManager: Phase DESKTOP
    gnome-session[1036]: DEBUG(+): GsmManager: Phase APPLICATION
    gnome-session[1036]: DEBUG(+): GsmManager: ID: /org/gnome/SessionManager/App1 app-id:gnome-shell.desktop is-disabled:0 is-conditionally-disabled:0
    gnome-session[1036]: DEBUG(+): GsmManager: starting phase INITIALIZATION
    gnome-session[1036]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App2'
    gnome-session[1036]: DEBUG(+): Starting app: /org/gnome/SessionManager/App2
    gnome-session[1036]: DEBUG(+): GsmAutostartApp: starting gnome-settings-daemon.desktop: command=/usr/lib/gnome-settings-daemon/gnome-settings-daemon startup-id=10acccb988624d95d5131971581226648300000010360001
    gnome-session[1036]: DEBUG(+): GsmAutostartApp: started pid:1046
    gnome-session[1036]: DEBUG(+): GsmManager: RegisterClient
    gnome-session[1036]: DEBUG(+): GsmManager: Adding new client 10acccb988624d95d5131971581614780600000010360002 to session
    gnome-session[1036]: DEBUG(+): uid = 120
    gnome-session[1036]: DEBUG(+): pid = 1118
    gnome-session[1036]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/Client1 to store
    gnome-session[1036]: DEBUG(+): GsmManager: Client added: /org/gnome/SessionManager/Client1
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client1 interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=RegisterClient
    gnome-session[1036]: DEBUG(+): GsmManager: RegisterClient 10acccb988624d95d5131971581226648300000010360001
    gnome-session[1036]: DEBUG(+): GsmManager: Adding new client 10acccb988624d95d5131971581226648300000010360001 to session
    gnome-session[1036]: DEBUG(+): uid = 120
    gnome-session[1036]: DEBUG(+): pid = 1046
    gnome-session[1036]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/Client2 to store
    gnome-session[1036]: DEBUG(+): GsmManager: Client added: /org/gnome/SessionManager/Client2
    gnome-session[1036]: DEBUG(+): App gnome-settings-daemon.desktop registered
    gnome-session[1036]: DEBUG(+): GsmManager: ending phase INITIALIZATION
    gnome-session[1036]: DEBUG(+): GsmManager: starting phase WINDOW_MANAGER
    gnome-session[1036]: DEBUG(+): GsmManager: ending phase WINDOW_MANAGER
    gnome-session[1036]: DEBUG(+): GsmManager: starting phase PANEL
    gnome-session[1036]: DEBUG(+): GsmManager: ending phase PANEL
    gnome-session[1036]: DEBUG(+): GsmManager: starting phase DESKTOP
    gnome-session[1036]: DEBUG(+): GsmManager: ending phase DESKTOP
    gnome-session[1036]: DEBUG(+): GsmManager: starting phase APPLICATION
    gnome-session[1036]: DEBUG(+): GsmManager: starting app '/org/gnome/SessionManager/App1'
    gnome-session[1036]: DEBUG(+): Starting app: /org/gnome/SessionManager/App1
    gnome-session[1036]: DEBUG(+): GsmAutostartApp: starting gnome-shell.desktop: command=gnome-shell --gdm-mode startup-id=10acccb988624d95d5131971581226572800000010360000
    gnome-session[1036]: DEBUG(+): GsmAutostartApp: started pid:1133
    gnome-session[1036]: DEBUG(+): GsmManager: ending phase APPLICATION
    gnome-session[1036]: DEBUG(+): GsmManager: starting phase RUNNING
    gnome-session[1036]: DEBUG(+): GsmPresence: adding idle watch
    gnome-session[1036]: DEBUG(+): GSIdleMonitor: creating new alarm for positive transition wait=600000
    gnome-session[1036]: DEBUG(+): GSIdleMonitor: creating new alarm for negative transition wait=599999
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client2 interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client2 interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager interface=org.gnome.SessionManager method=IsInhibited
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmShell: Connected to the shell
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmXsmpServer: accept_ice_connection()
    gnome-session[1036]: DEBUG(+): GsmXsmpServer: auth_ice_connection()
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: Setting up new connection
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: New client '0xa00d0c0 []'
    gnome-session[1036]: DEBUG(+): GsmStore: Adding object id /org/gnome/SessionManager/Client3 to store
    gnome-session[1036]: DEBUG(+): GsmManager: Client added: /org/gnome/SessionManager/Client3
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: Initializing client 0xa00d0c0 []
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: Client '0xa00d0c0 []' received RegisterClient(10acccb988624d95d5131971581226572800000010360000)
    gnome-session[1036]: DEBUG(+): GsmManager: Adding new client 10acccb988624d95d5131971581226572800000010360000 to session
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: Sending RegisterClientReply to '0xa00d0c0 [10acccb988624d95d5131971581226572800000010360000]'
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: Set properties from client '0xa00d0c0 [10acccb988624d95d5131971581226572800000010360000]'
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: Program = 'gnome-shell'
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: UserID = 'gdm'
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: RestartStyleHint = 0
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: ProcessID = '1133'
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: CurrentDirectory = '/var/lib/gdm'
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: _GSM_Priority = 20
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=GetAll
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=Get
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Presence interface=org.freedesktop.DBus.Properties method=Get
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: connecting to address: unix:abstract=/tmp/gdm-greeter-bvcleLaw,guid=ee40278e3f4d9eb0fe19bee0000000f2
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Calling GetDisplayId
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Creating proxy for /org/gnome/DisplayManager/Display1
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Calling StartConversation
    JS LOG: GNOME Shell started at Thu Oct 27 2011 19:43:43 GMT+0800 (PHT)
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=Ready
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Received Ready (gdm-password)
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Calling BeginVerification
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=DefaultLanguageNameChanged
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=DefaultSessionNameChanged
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Received DefaultSessionNameChanged (gnome)
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=InfoQuery
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Received InfoQuery (gdm-password, Username:)
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Calling AnswerQuery
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=SelectedUserChanged
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Received SelectedUserChanged (vic)
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=DefaultLanguageNameChanged
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=DefaultSessionNameChanged
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Received DefaultSessionNameChanged (gnome)
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=SecretInfoQuery
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Received SecretInfoQuery (gdm-password, Password: )
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Calling AnswerQuery
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=Problem
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Received Problem (gdm-password, Authentication failure)
    JS LOG: error: Authentication failure
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=ConversationStopped
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Received ConversationStopped (gdm-password)
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Calling Cancel
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=Reset
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Reset
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Calling StartConversation
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: obj_path=/org/gnome/DisplayManager/GreeterServer interface=org.gnome.DisplayManager.GreeterServer method=Ready
    (gnome-shell:1133): GdmGreeter-DEBUG: GdmGreeterClient: Received Ready (gdm-password)
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: handling signal 15
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Found 1 callbacks
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: running 15 handler: 0x8062560
    gnome-session[1036]: DEBUG(+): Got callback for signal 15
    gnome-session[1036]: DEBUG(+): GsmManager: Logout called
    gnome-session[1036]: DEBUG(+): GsmShell: Connected to the shell
    gnome-session[1036]: DEBUG(+): GsmManager: requesting logout
    gnome-session[1036]: DEBUG(+): GsmManager: ending phase RUNNING
    gnome-session[1036]: DEBUG(+): GsmManager: starting phase QUERY_END_SESSION
    gnome-session[1036]: DEBUG(+): GsmManager: Client /org/gnome/SessionManager/Client1
    gnome-session[1036]: DEBUG(+): GsmManager: Client /org/gnome/SessionManager/Client2
    gnome-session[1036]: DEBUG(+): GsmManager: Client /org/gnome/SessionManager/Client3
    gnome-session[1036]: DEBUG(+): GsmManager: sending query-end-session to clients (logout mode: forceful)
    gnome-session[1036]: DEBUG(+): GsmDBusClient: sending QueryEndSession signal to :1.7
    gnome-session[1036]: DEBUG(+): GsmManager: adding client to query clients: /org/gnome/SessionManager/Client1
    gnome-session[1036]: DEBUG(+): GsmDBusClient: sending QueryEndSession signal to :1.2
    gnome-session[1036]: DEBUG(+): GsmManager: adding client to query clients: /org/gnome/SessionManager/Client2
    gnome-session[1036]: DEBUG(+): GsmManager: adding client to query clients: /org/gnome/SessionManager/Client3
    gnome-session[1036]: DEBUG(+): Caught signal 15, shutting down normally.
    gnome-session[1036]: DEBUG(+): GdmSignalHandler: Done handling signals
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: Client '0xa00d0c0 [gnome-shell 10acccb988624d95d5131971581226572800000010360000]' received SaveYourselfDone(success = True)
    gnome-session[1036]: DEBUG(+): GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    gnome-session[1036]: DEBUG(+): GsmXsmpServer: sms_error_handler (0xb5c11fc8, FALSE, 3, 9, 32771, 0)
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client1 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    gnome-session[1036]: DEBUG(+): GsmDBusClient: got EndSessionResponse is-ok:1 reason=
    gnome-session[1036]: DEBUG(+): GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client2 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client2 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    gnome-session[1036]: DEBUG(+): GsmDBusClient: got EndSessionResponse is-ok:1 reason=
    gnome-session[1036]: DEBUG(+): GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    gnome-session[1036]: DEBUG(+): GsmManager: query end session complete
    gnome-session[1036]: DEBUG(+): GsmShell: Connected to the shell
    gnome-session[1036]: DEBUG(+): GsmManager: ending phase QUERY_END_SESSION
    gnome-session[1036]: DEBUG(+): GsmManager: starting phase END_SESSION
    gnome-session[1036]: DEBUG(+): GsmManager: adding client to end-session clients: /org/gnome/SessionManager/Client1
    gnome-session[1036]: DEBUG(+): GsmManager: adding client to end-session clients: /org/gnome/SessionManager/Client2
    gnome-session[1036]: DEBUG(+): GsmManager: adding client to end-session clients: /org/gnome/SessionManager/Client3
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: Client '0xa00d0c0 [gnome-shell 10acccb988624d95d5131971581226572800000010360000]' received SaveYourselfDone(success = True)
    gnome-session[1036]: DEBUG(+): GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    gnome-session[1036]: DEBUG(+): GsmXsmpServer: sms_error_handler (0xb5c11fc8, FALSE, 3, c, 32771, 0)
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client1 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    gnome-session[1036]: DEBUG(+): GsmDBusClient: got EndSessionResponse is-ok:1 reason=
    gnome-session[1036]: DEBUG(+): GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client2 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/gnome/SessionManager/Client2 interface=org.gnome.SessionManager.ClientPrivate method=EndSessionResponse
    gnome-session[1036]: DEBUG(+): GsmDBusClient: got EndSessionResponse is-ok:1 reason=
    gnome-session[1036]: DEBUG(+): GsmManager: Response from end session request: is-ok=1 do-last=0 cancel=0 reason=
    gnome-session[1036]: DEBUG(+): GsmManager: ending phase END_SESSION
    gnome-session[1036]: DEBUG(+): GsmManager: starting phase EXIT
    gnome-session[1036]: DEBUG(+): GsmManager: stopped client: /org/gnome/SessionManager/Client1
    gnome-session[1036]: DEBUG(+): GsmManager: stopped client: /org/gnome/SessionManager/Client2
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: xsmp_stop ('0xa00d0c0 [gnome-shell 10acccb988624d95d5131971581226572800000010360000]')
    gnome-session[1036]: DEBUG(+): GsmManager: stopped client: /org/gnome/SessionManager/Client3
    gnome-session[1036]: DEBUG(+): GsmManager: disconnect client: /org/gnome/SessionManager/Client1
    gnome-session[1036]: DEBUG(+): GsmManager: disconnect for app 'at-spi-registryd.desktop'
    gnome-session[1036]: DEBUG(+): GsmManager: unable to find application for client - not restarting
    gnome-session[1036]: DEBUG(+): GsmStore: Unreffing object: 0xa011e48
    gnome-session[1036]: DEBUG(+): GsmClient: disposing /org/gnome/SessionManager/Client1
    gnome-session[1036]: DEBUG(+): GsmStore: emitting removed for /org/gnome/SessionManager/Client1
    gnome-session[1036]: DEBUG(+): GsmManager: Client removed: /org/gnome/SessionManager/Client1
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameOwnerChanged
    gnome-session[1036]: DEBUG(+): GsmDBusClient: obj_path=(null) interface=(null) method=(null)
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: Client '0xa00d0c0 [gnome-shell 10acccb988624d95d5131971581226572800000010360000]' received CloseConnection
    gnome-session[1036]: DEBUG(+): GsmManager: disconnect client
    gnome-session[1036]: DEBUG(+): GsmManager: disconnect client: /org/gnome/SessionManager/Client3
    gnome-session[1036]: DEBUG(+): GsmManager: in shutdown, not restarting application
    gnome-session[1036]: DEBUG(+): GsmStore: Unreffing object: 0xa00d0c0
    gnome-session[1036]: DEBUG(+): GsmManager: Client removed: /org/gnome/SessionManager/Client3
    gnome-session[1036]: DEBUG(+): GsmClient: disposing /org/gnome/SessionManager/Client3
    gnome-session[1036]: DEBUG(+): GsmXSMPClient: xsmp_finalize (0xa00d0c0 [gnome-shell 10acccb988624d95d5131971581226572800000010360000])
    gnome-session[1036]: DEBUG(+): GsmManager: disconnect client: /org/gnome/SessionManager/Client2
    gnome-session[1036]: DEBUG(+): GsmManager: in shutdown, not restarting application
    gnome-session[1036]: DEBUG(+): GsmStore: Unreffing object: 0xa011cc8
    gnome-session[1036]: DEBUG(+): GsmClient: disposing /org/gnome/SessionManager/Client2
    gnome-session[1036]: DEBUG(+): GsmStore: emitting removed for /org/gnome/SessionManager/Client2
    gnome-session[1036]: DEBUG(+): GsmManager: Client removed: /org/gnome/SessionManager/Client2
    gnome-session[1036]: DEBUG(+): GsmManager: last client disconnected - exiting
    gnome-session[1036]: DEBUG(+): GsmManager: ending phase EXIT
    gnome-session[1036]: DEBUG(+): Unreffing manager
    gnome-session[1036]: DEBUG(+): GsmManager: disposing manager
    gnome-session[1036]: DEBUG(+): GsmStore: Clearing object store
    gnome-session[1036]: DEBUG(+): GsmStore: Unreffing object: 0xa045408
    gnome-session[1036]: DEBUG(+): GsmStore: Unreffing object: 0xa045480
    gnome-session[1036]: DEBUG(+): GsmStore: emitting removed for /org/gnome/SessionManager/App2
    gnome-session[1036]: DEBUG(+): GsmStore: emitting removed for /org/gnome/SessionManager/App1
    gnome-session[1036]: DEBUG(+): GsmStore: Clearing object store
    gnome-session[1036]: DEBUG(+): GsmStore: Clearing object store
    (gnome-settings-daemon:1046): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    Window manager warning: Log level 16: gnome-shell: Fatal IO error 104 (Connection reset by peer) on X server :0.
    Last edited by vic (2011-10-27 13:51:21)

    wonder wrote:
    vic wrote:
    wonder wrote:what's your user id?
    when asked for uuid/uid?... I put 100. I thought any random number would do...
    look in /etc/pam.d/gdm-password
    in arch and in general >= 1000 are  normal users, < 1000 system users
    is that how it works? can i change it from 100 to 1000 or just make a new one?
    anyways i'll look to it.

Maybe you are looking for

  • Service Interfaces in PI 7.0?

    Hi Experts, PI 7.0 has been installed I just checked the SPROXY transaction in ECC, It shows the service interfaces not message interfaces... I was getting confused..cos i think service interfaces are only in PI 7.1 and its very different from 7.0 ca

  • Calculate difference in value based on two date parameters

    Hi All, I have a table and need to calculate the difference in rent amount for a property based on two date parameters. I have uploaded sample data here: https://app.box.com/s/pu8oa4f3jhrhm0ylshdz2fuo7541vn4z Thanks Jag

  • Inconsistency of results using adaptive RFC

    I'm calling a function from a R/3 System using Adaptive RFC and i'm having different results from my webdynpro application that the ones that i'm having in the R/3. If someone could tell me why this happen I will appreciate. Thanks.

  • Blackberry Playbook Video Store Support

    I am trying to create an account for the video store, but every time I try to register it sends me to a failed link. Both links for support/help do not work either. My camera has also stopped working AGAIN for the second time after an update! Please

  • Configurator 4 - final release now available

    This is our shipping release of Configurator 4. It includes various bug fixes and introduces Hi-DPI support. It was just posted yesterday. Also look for the HMTL Sample Panel and the forthcoming Photoshop CC Features on Adobe Exchange. Don't forget t