Archlinux (after fresh) Install Script

I want to share my archlinux install script dat i use after do a fresh install, if u have any idea of how to make it better pls post here
#!/bin/bash
# By helmuthdu
#custom repositories #{{{
read -p "Install custom repositories [y][n]: " OPTION
if [ $OPTION = "y" ]; then
echo -e '[ayatana]\nServer = http://repo.ayatana.info/' >> /etc/pacman.conf
fi
#system update #{{{
pacman -Syu
read -p "Reboot your system [y][n]: " OPTION
if [ $OPTION = "y" ]; then
reboot
fi
#create a new user #{{{
read -p "New user name: " USERNAME
useradd -m -g users -G users,audio,lp,optical,storage,video,wheel,games,power,scanner -s /bin/bash $USERNAME
passwd $USERNAME
#set user as sudo #{{{
pacman -S --noconfirm sudo
EDITOR=nano visudo
#install yaourt #{{{
read -p "Install yaourt [y][n]" OPTION
if [ $OPTION = "y" ]; then
pacman -S --noconfirm base-devel yajl
su -l $USERNAME --command="
wget http://aur.archlinux.org/packages/package-query/package-query.tar.gz;
tar zxvf package-query.tar.gz;
cd package-query;
makepkg --noconfirm -si;
cd ..;
rm -fr package-query*
su -l $USERNAME --command="
wget http://aur.archlinux.org/packages/yaourt/yaourt.tar.gz;
tar zxvf yaourt.tar.gz;
cd yaourt;
makepkg --noconfirm -si;
cd ..;
rm -fr yaourt*
fi
#base system #{{{
pacman -S --noconfirm curl bc rsync mlocate bash-completion vim
pacman -S --noconfirm gutenprint foomatic-db foomatic-db-engine foomatic-db-nonfree foomatic-filters hplip splix cups-pdf
pacman -S --noconfirm ntfs-3g ntfsprogs
pacman -S --noconfirm rssh openssh samba
#configure ssh/samba #{{{
echo -e "sshd: ALL\n# End of file" > /etc/hosts.allow
echo -e "ALL: ALL: DENY\n# End of file" > /etc/hosts.deny
cp /etc/samba/smb.conf.default /etc/samba/smb.conf
#ssh_conf #{{{
sed -i '/ListenAddress/s/^#//' /etc/ssh/sshd_config
sed -i '/SyslogFacility/s/^#//' /etc/ssh/sshd_config
sed -i '/LogLevel/s/^#//' /etc/ssh/sshd_config
sed -i '/LoginGraceTime/s/^#//' /etc/ssh/sshd_config
sed -i '/PermitRootLogin/s/^#//' /etc/ssh/sshd_config
sed -i '/StrictModes/s/^#//' /etc/ssh/sshd_config
sed -i '/RSAAuthentication/s/^#//' /etc/ssh/sshd_config
sed -i '/PubkeyAuthentication/s/^#//' /etc/ssh/sshd_config
sed -i '/IgnoreRhosts/s/^#//' /etc/ssh/sshd_config
sed -i '/PermitEmptyPasswords/s/^#//' /etc/ssh/sshd_config
sed -i '/X11Forwarding/s/^#//' /etc/ssh/sshd_config
sed -i '/X11Forwarding/s/no/yes/' /etc/ssh/sshd_config
sed -i '/X11DisplayOffset/s/^#//' /etc/ssh/sshd_config
sed -i '/X11UseLocalhost/s/^#//' /etc/ssh/sshd_config
sed -i '/PrintMotd/s/^#//' /etc/ssh/sshd_config
sed -i '/PrintMotd/s/yes/no/' /etc/ssh/sshd_config
sed -i '/PrintLastLog/s/^#//' /etc/ssh/sshd_config
sed -i '/TCPKeepAlive/s/^#//' /etc/ssh/sshd_config
pacman -S --noconfirm tar gzip bzip2 unzip unrar p7zip
pacman -S --noconfirm alsa-utils alsa-oss alsa-plugins
sed -i '/MODULES/s/MODULES=(/&fuse/' /etc/rc.conf
#install video driver #{{{
pacman -S --noconfirm xorg-server xorg-xinit xorg-utils xorg-server-utils xorg-xauth xf86-input-evdev xf86-input-synaptics
pacman -S --noconfirm mesa mesa-demos
read -p "Video driver (intel|nvidia|nouveau|virtualbox): " VIDEO
if [ $VIDEO = "intel" ]; then
pacman -S --noconfirm libgl xf86-video-intel
elif [ $VIDEO = "nvidia" ]; then
pacman -S nvidia nvidia-utils
elif [ $VIDEO = "nouveau" ]; then
pacman -S --noconfirm libgl xf86-video-nouveau nouveau-dri
modprobe nouveau
sed -i '/MODULES/s/^[^ ]*\>/& nouveau/' /etc/rc.conf
elif [ $VIDEO = "virtualbox" ]; then
pacman -S --noconfirm virtualbox-archlinux-additions
modprobe -a vboxguest vboxsf vboxvideo
sed -i '/MODULES/s/^[^ ]*\>/& vboxguest vboxsf vboxvideo/' /etc/rc.conf
groupadd vboxsf
gpasswd -a $USERNAME vboxsf
fi
#git access thru a firewall #{{{
#this config help me to bypass the company firewall for git access
TOR=""
read -p "config git access thru a firewall [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm gtk-doc openbsd-netcat vidalia privoxy git"
echo 'forward-socks5 / 127.0.0.1:9050 .' >> /etc/privoxy/config
echo -e '#!/bin/bash\nnc.openbsd -xlocalhost:9050 -X5 $*' >> /usr/bin/proxy-wrapper
chmod +x /usr/bin/proxy-wrapper
echo -e '\nexport GIT_PROXY_COMMAND="/usr/bin/proxy-wrapper"' >> /etc/bash.bashrc
export GIT_PROXY_COMMAND="/usr/bin/proxy-wrapper"
groupadd -g 42 privoxy
useradd -u 42 -g privoxy -s /bin/false -d /etc/privoxy privoxy
pacman -S --noconfirm tor privoxy
rc.d restart tor privoxy
su -l $USERNAME --command="sudo /etc/rc.d/tor restart"
su -l $USERNAME --command="sudo /etc/rc.d/privoxy restart"
TOR="tor privoxy"
fi
#install desktop environment #{{{
read -p "Desktop Environment (Gnome|KDE): " DE
#gnome #{{{
if [ $DE = "gnome" ]; then
#desktop #{{{
pacman -S --noconfirm gnome gnome-extra
pacman -S --noconfirm gamin pulseaudio-gnome gnome-tweak-tool telepathy deja-dup
pacman -S --noconfirm gnome-packagekit gnome-settings-daemon-updates
pacman -Rdd --noconfirm sushi
su -l $USERNAME --command="yaourt -S --noconfirm gloobus-sushi-bzr"
su -l $USERNAME --command="yaourt -S --noconfirm gnome-shell-system-monitor-applet-git gnome-shell-extension-noa11y-git gnome-shell-extension-weather-git gnome-shell-extension-user-theme gnome-shell-extension-workspace-indicator gnome-shell-extension-places-menu gnome-shell-extension-dock gnome-shell-extension-pomodoro gnome-shell-extension-mediaplayer-git"
#aparencia #{{{
su -l $USERNAME --command="yaourt -S --noconfirm faience-icon-theme elementary-icons"
su -l $USERNAME --command="yaourt -S --noconfirm zukitwo-themes light-themes-bzr egtk-bzr"
su -l $USERNAME --command="yaourt -S --noconfirm gnome-shell-theme-faience gnome-shell-theme-nord gnome-shell-theme-eos"
#acessórios #{{{
su -l $USERNAME --command="yaourt -S --noconfirm docky guake gpaste kupfer automounter"
su -l $USERNAME --command="yaourt -S --noconfirm gnome-activity-journal libzeitgeist zeitgeist-datahub zeitgeist-extensions"
su -l $USERNAME --command="yaourt -S --noconfirm gedit-plugins gedit-latex"
su -l $USERNAME --command="yaourt -S --noconfirm nautilus-open-terminal nautilus-terminal nautilus-dropbox gnome-defaults-list"
su -l $USERNAME --command="echo -e '[general]\ndef_term_height=10\ndef_visible=0\n\n[terminal]\nshell=/bin/bash' > ~/.nautilus-terminal"
#escritório #{{{
pacman -S --noconfirm libreoffice-pt-BR libreoffice-{base,calc,draw,impress,math,writer,gnome} libreoffice-extension-presenter-screen libreoffice-extension-pdfimport
pacman -S --noconfirm chmsee
#impressão #{{{
pacman -S --noconfirm system-config-printer-gnome
#graficos #{{{
pacman -S --noconfirm shotwell
#internet #{{{
#networkmanager #{{{
NETWORKMANAGER="network"
read -p "Install networkmanager [y][n]: " OPTION
if [ $OPTION = "y" ]; then
pacman -S --noconfirm networkmanager network-manager-applet
groupadd networkmanager
gpasswd -a $USERNAME networkmanager
NETWORKMANAGER="networkmanager"
fi
#multimedia #{{{
su -l $USERNAME --command="yaourt -S --noconfirm exaile exfalso transmageddon"
#arista #{{{
read -p "Install arista [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm arista-transcoder"
fi
#outros #{{{
pacman -S --noconfirm gksu gvfs-smb xdg-user-dirs
su -l $USERNAME --command="yaourt -S --noconfirm figlet cowsay conky-lua"
LOGINMANAGER=gdm
#KDE #{{{
elif [ $DE = "kde" ]; then
#desktop #{{{
pacman -S --noconfirm kde kde-l10n-pt_br yakuake
pacman -Rcsn --noconfirm kdenetwork-kopete kdemultimedia-kscd kdemultimedia-juk kdemultimedia-dragonplayer
#aparencia #{{{
su -l $USERNAME --command="yaourt -S --noconfirm chakra-gtk-config"
su -l $USERNAME --command="yaourt -S --noconfirm oxygen-gtk qtcurve-gtk2 qtcurve-kde4"
su -l $USERNAME --command="yaourt -S --noconfirm kfaenza-icon-theme"
su -l $USERNAME --command="yaourt -S --noconfirm yakuake-skin-plasma-oxygen-panel plasma-icontasks plasma-theme-caledonia kdm-theme-caledonia ksplash-caledonia bespin-svn"
# impressão #{{{
pacman -S --noconfirm kdeadmin-system-config-printer-kde
# escritório #{{{
pacman -S --noconfirm libreoffice-pt-BR libreoffice-{base,calc,draw,impress,math,writer,kde4} libreoffice-extension-presenter-screen libreoffice-extension-pdfimport
pacman -S --noconfirm kchmviewer
#graficos #{{{
pacman -S --noconfirm digikam kipi-plugins
#internet #{{{
pacman -S --noconfirm choqok
pacman -S --noconfirm telepathy-kde telepathy
#networkmanager #{{{
NETWORKMANAGER="network"
read -p "Install networkmanager [y][n]: " OPTION
if [ $OPTION = "y" ]; then
pacman -S --noconfirm networkmanager kdeplasma-applets-networkmanagement
groupadd networkmanager
gpasswd -a $USERNAME networkmanager
NETWORKMANAGER="networkmanager"
fi
#multimediaa #{{{
pacman -S --noconfirm amarok k3b dvd+rw-tools
su -l $USERNAME --command="yaourt -S --noconfirm vlc phonon-vlc"
su -l $USERNAME --command="yaourt -S --noconfirm minitube musique bangarang"
# sistema #{{{
su -l $USERNAME --command="yaourt -S --noconfirm kdirwatch kcm-wacomtablet quickaccess-plasmoid"
su -l $USERNAME --command="yaourt -S --noconfirm apper-git"
LOGINMANAGER=kdm
fi
#desenvolvimento #{{{
#qtcreator #{{{
read -p "Install qtcreator [y][n]: " OPTION
if [ $OPTION = "y" ]; then
pacman -S --noconfirm qtcreator qt-doc
mkdir -p /home/$USERNAME/.config/Nokia/qtcreator/styles
wget http://angrycoding.googlecode.com/svn/branches/qt-creator-monokai-theme/monokai.xml
mv monokai.xml /home/$USERNAME/.config/Nokia/qtcreator/styles/
chown -R $USERNAME:users /home/$USERNAME/.config
fi
#gvim #{{{
read -p "Install gvim [y][n]: " OPTION
if [ $OPTION = "y" ]; then
pacman -Rdd --noconfirm vim
pacman -S --noconfirm gvim meld splint tidyhtml pyflakes ctags wmctrl
su -l $USERNAME --command="yaourt -S --noconfirm jsl"
sed -i '/Icon/s/gvim/vim/g' /usr/share/applications/gvim.desktop
fi
#acessórios #{{{
read -p "Install wunderlist [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm wunderlist"
fi
#escritório #{{{
pacman -S --noconfirm aspell-pt
su -l $USERNAME --command="yaourt -S --noconfirm hunspell-pt-br"
read -p "Install Latex support [y][n]: " OPTION
if [ $OPTION = "y" ]; then
pacman -S --noconfirm texlive-latexextra texlive-langextra lyx
su -l $USERNAME --command="yaourt -S --noconfirm abntex"
fi
#ferramentas de sistema #{{{
pacman -S --noconfirm htop grsync
pacman -S --noconfirm wine wine_gecko winetricks
su -l $USERNAME --command="yaourt -S --noconfirm toilet figlet cowsay conky-lua-old"
read -p "Install Virtualbox [y][n]: " OPTION
if [ $OPTION = "y" ]; then
pacman -S --noconfirm virtualbox virtualbox-additions
su -l $USERNAME --command="yaourt -S --noconfirm virtualbox-ext-oracle"
modprobe vboxdrv
sed -i '/MODULES/s/^[^ ]*\>/& vboxdrv/' /etc/rc.conf
groupadd vboxusers
gpasswd -a $USERNAME vboxusers
fi
#graficos #{{{
pacman -S --noconfirm gimp inkscape uniconvertor python2-numpy python-lxml
su -l $USERNAME --command="yaourt -S --noconfirm xmind"
su -l $USERNAME --command="yaourt -S --noconfirm gimp-paint-studio gimp-resynth gimpfx-foundry gimp-plugin-pandora gimp-plugin-saveforweb"
#internet #{{{
pacman -S --noconfirm firefox firefox-i18n-pt-br thunderbird thunderbird-i18n-pt-br flashplugin
pacman -Rdd --noconfirm jre7-openjdk jdk7-openjdk
su -l $USERNAME --command="yaourt -S --noconfirm jdk"
su -l $USERNAME --command="yaourt -S --noconfirm google-chrome jdownloader"
LAMP=""
read -p "Install LAMP [y][n]: " OPTION
if [ $OPTION = "y" ]; then
pacman -S --noconfirm apache mysql php php-apache php-mcrypt php-gd
su -l $USERNAME --command="yaourt -S --noconfirm adminer"
rc.d restart httpd mysqld
/usr/bin/mysql_secure_installation
echo -e '\n# adminer configuration\nInclude conf/extra/httpd-adminer.conf' >> /etc/httpd/conf/httpd.conf
echo -e 'application/x-httpd-php php' >> /etc/httpd/conf/mime.types
echo -e '\n# Use for PHP 5.x:\nInclude conf/extra/php5_module.conf\nLoadModule php5_module modules/libphp5.so\nAddHandler php5-script php' >> /etc/httpd/conf/httpd.conf
sed -i 's/DirectoryIndex\ index.html/DirectoryIndex\ index.html\ index.php/g' /etc/httpd/conf/httpd.conf
sed -i 's/public_html/Sites/g' /etc/httpd/conf/extra/httpd-userdir.conf
sed -i '/mcrypt.so/s/^;//' /etc/php/php.ini
sed -i '/mysqli.so/s/^;//' /etc/php/php.ini
sed -i '/mysql.so/s/^;//' /etc/php/php.ini
sed -i '/gd.so/s/^;//' /etc/php/php.ini
su -l $USERNAME --command="mkdir -p ~/Sites"
su -l $USERNAME --command="chmod 775 ~/ && chmod -R 775 ~/Sites"
rc.d restart httpd mysqld
LAMP="httpd mysqld"
fi
#jogos #{{{
read -p "Install Games [y][n]: " OPTION
if [ $OPTION = "y" ]; then
read -p "Install Astromenace [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm astromenace"
fi
read -p "Install Maniadrive [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm maniadrive"
fi
read -p "Install World of Padman [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm worldofpadman"
fi
read -p "Install Wesnoth [y][n]: " OPTION
if [ $OPTION = "y" ]; then
read -p "Install Devel Version [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm wesnoth-devel"
else
pacman -S --noconfirm wesnoth
fi
fi
read -p "Install Simutrans [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm simutrans"
fi
read -p "Install Heroes of Newerth [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm hon"
fi
read -p "Install Tales of Maj'Eyal: Age of Ascendancy [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm tome4"
fi
read -p "Install Numptyphysics [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm numptyphysics-svn"
fi
read -p "Install Counter-Strike 2D [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm counter-strike-2d"
fi
read -p "Install M.A.R.S. [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm mars-shooter"
fi
read -p "Install SuperTuxKart [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm supertuxkart"
fi
read -p "Install OpenTyrian [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm opentyrian-hg"
fi
read -p "Install Warsow [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm warsow"
fi
read -p "Install Doukutsu [y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm doukutsu"
fi
fi
#multimedia #{{{
su -l $USERNAME --command="yaourt -S --noconfirm gstreamer0.10-plugins pulseaudio"
su -l $USERNAME --command="yaourt -S --noconfirm libquicktime libdvdread libdvdnav libdvdcss codecs cdrdao"
su -l $USERNAME --command="yaourt -S --noconfirm xbmc"
read -p "Install midi support[y][n]: " OPTION
if [ $OPTION = "y" ]; then
su -l $USERNAME --command="yaourt -S --noconfirm timidity++ fluidr3"
echo -e 'soundfont /usr/share/soundfonts/fluidr3/FluidR3GM.SF2' >> /etc/timidity++/timidity.cfg
fi
#font #{{{
su -l $USERNAME --command="yaourt -S --noconfirm ttf-ms-fonts ttf-dejavu ttf-liberation ttf-kochi-substitute ttf-google-webfonts ttf-roboto"
read -p "Install patched font configuration [(i)nfinity][(u)buntu][(n)one]: " OPTION
if [ $OPTION = "i" ]; then
pacman -Rdd --noconfirm freetype2
su -l $USERNAME --command="yaourt -S freetype2-infinality"
wget http://www.infinality.net/files/local.conf
mv local.conf /etc/fonts/
elif [ $OPTION = "u" ]; then
pacman -Rdd --noconfirm cairo fontconfig freetype2 libxft
su -l $USERNAME --command="yaourt -S --noconfirm cairo-ubuntu fontconfig-ubuntu freetype2-ubuntu"
fi
# misc #{{{
#configure rc.conf #{{{
sed -i /"DAEMONS"/d /etc/rc.conf
echo "DAEMONS=(syslog-ng crond alsa sshd samba dbus cupsd $TOR $LAMP $LOGINMANAGER $NETWORKMANAGER)" >> /etc/rc.conf
echo "System configuration complete"
#reboot #{{{
read -p "Reboot your system [y][n]: " OPTION
if [ $OPTION = "y" ]; then
reboot
fi
Last edited by helmuthdu (2011-11-17 22:05:09)

I appreciate the reply.
My fresh install from the DVD finished and the problem was still occurring. I'm now zeroing the data (one pass), per your suggestion. I'll then do an install of Leopard via Firewire, as I'm unable to start it from the DVD.
I'm curious how a bad install would prevent the computer from starting from a CD/DVD. I'm able to use the install CD/DVD in other computer without any problems, so I don't believe the physical disk is the issue. When I start while holding OPTION, and insert the DVD, it comes up as a boot-able option. Also, the disk image I initially used hasn't had any issues to date.
Thanks again,
Ben

Similar Messages

  • Can not  start/stop fullfilment server after fresh install

    Can not start/stop fullfilment server after fresh install
    Product: e-business suite (11.5.9)
    Platform: Win XP 5.1 (SP2)
    We have performed a new installation of ebusiness suite in our windows platform.
    Installtion went with out any problem.
    But we can not start/stop the fullfilment server. While trying to start/stop the server we are getting follwing error message:
    c:\oracle11i\prodcomn\admin\scripts\PROD_03274019ih\jtffmctl.cmd start
    script returned:
    C:\oracle11i\prodcomn\admin\scripts\PROD_03274019ih>echo off
    You are running jtffmctl.cmd
    Mon 13/09/2004
    01:46 PM
    "Starting Fulfillment Server for "PROD" on port "9300" ...\n"
    "Error returned while running OUI"
    ERRORCODE = 1 ERRORCODE_END
    .end std out.
    Class not found: oracle.apps.jtf.fm.engine.processor.Processor
    Please let us know how to fix this issue.
    Regards, Kunal

    edit the jtffmctl.cmd and make sure that it point to the correct java path, alse try to use java 1.4.1

  • [Solved] X11 won't start after fresh install

    Hihi!
    I've been using Debian for quite some time now but I want to switch to Arch. My notebook is fairly modern and this doesn't mix well with Debian and as such my dGPU is basically unusable. My preferred method of installing Debian is to start headless so I felt quite at home with Arch and got through the install just fine, but I'm having problems launching Openbox among other hardware related issues. I spent yesterday googling and attempting fixes but came up with nothing, so I had to reinstall Debian as I was counting on having a usable computer at the end of the day. I did write down the messages I was getting though, hopefully they are enough to diagnose the issue. My hardware:
    AMD A10-5750M (8650G graphics)
    AMD Radeon 8970M 2GB
    The kernel was the one in the very latest install snapshot (3.12-9 or something)
    The first thing I noticed after booting into the fresh install was a warning along these lines
    [drm:r600_dma_ring_test] radeon: ring 3 test failed
    I ignored it, and preceeded to install the following packages
    xorg-server
    xorg-utils
    xorg-xinit
    mesa
    xf86-video-ati
    openbox
    openbox-themes
    other things related to the UI I wanted
    The ring 3 test warning still occured on reboot after installing X and the radeon drivers. Again I ignored it. My .xinitrc was simply exec openbox-session
    I ran startx and it failed, and got a bunch of errors that began right after a reference to "radeon" and the kernel. My xorg log did not get far at all. In fact the last lines were
    (II) config/udev: Adding drm device (/dev/dri/card0)
    (II) config/udev: Adding drm device (/dev/dri/card1)
    And that was literally the end of the log. This is clearly a GPU/driver issue, probably with the 8970M as card1 seems to be the last line? Any help is appreciated
    edit: This is the same process I use to install Debian, and using this exact same kernel (plus the Debian patches) I can start X just fine. my dGPU is unusable with the FOSS drivers through as there is no glamor support in Debian. I get segfaults whenever I launch something with DRI_PRIME=1 after setting the 8970M as the offload provider
    Last edited by remyze (2014-02-09 04:02:04)

    Ok I installed fresh and had the same issues as last time. With KMS early start I still have the same problems launching X and I still have the ring 3 test error (it just appears earlier).
    There is nothing pure text in /var/log, I don't know if theres a way to use systemd with wgetpaste, so I took a picture that is hopefully not to difficult to read. I tried to sharpen it up a bit in GIMP.
    *see pastebin below*
    I also noticed that I get that ring 3 error even when I boot up the Arch installer  via USB. I wonder if I should try an older image with an older kernel?
    -- mod edit: read the Forum Etiquette and only post thumbnails http://wiki.archlinux.org/index.php/For … s_and_Code [jwr] --
    Last edited by remyze (2014-02-09 03:30:24)

  • [Solved] Amilo XI 2550 - Black screen after fresh install

    Dear archlinux users,
    I have been reading the archlinux wiki and forums since I started using arch several years ago. It was always possible to solve the problems I ran into by consulting these webpages, therefore a big thanks to the community for the provided help.
    Two weeks ago I installed arch on a Fujitsu Siemens Amilo XI 2550. The first problem I ran into was that booting the live-cd resulted in a black screen and I could not even start with installing arch. This problem was solved with the kernel parameter 'nomodeset'.
    The first boot of the freshly installed arch also resulted in a black screen after the GRUB menu which was perfectly displayed. After some searching (here and here and ...) I plugged in an external monitor and it showed the login screen. I then installed KDE because I thaught the problem might not show up with X and KDE running. After the login to KDE I realized that the brightness of the laptop display is nearly black but not totally. It seems as if the brightness is at a very low level, but brightness cannot be controlled with the Fn+F8 or Fn+F9 commands. But I see a OSD that indicates that the controls are used but without effect. So at the moment it is only possible to work on the laptop with another display connected to it.
    Maybe of use:
    ls /sys/class/backlight/
    acpi_video0
    radeon_bl0
    less /sys/class/backlight/acpi_video0/bl_power
    0
    less /sys/class/backlight/acpi_video0/actual_brightness
    7
    less /sys/class/backlight/acpi_video0/brightness
    7
    less /sys/class/backlight/acpi_video0/max_brightness
    7
    less /sys/class/backlight/radeon_bl0/bl_power
    0
    less /sys/class/backlight/radeon_bl0/actual_brightness
    255
    less /sys/class/backlight/radeon_bl0/brightness
    255
    less /sys/class/backlight/radeon_bl0/max_brightness
    255
    dmesg | grep drm
    [ 0.736559] [drm] Initialized drm 1.1.0 20060810
    [ 0.743608] [drm] radeon kernel modesetting enabled.
    [ 0.743678] fb: switching to radeondrmfb from VESA VGA
    [ 0.744054] [drm] initializing kernel modesetting (RV630 0x1002:0x9583 0x1734:0x1107).
    [ 0.744065] [drm] register mmio base: 0xCFEF0000
    [ 0.744067] [drm] register mmio size: 65536
    [ 0.744172] [drm] Detected VRAM RAM=256M, BAR=256M
    [ 0.744174] [drm] RAM width 128bits DDR
    [ 0.744257] [drm] radeon: 256M of VRAM memory ready
    [ 0.744259] [drm] radeon: 512M of GTT memory ready.
    [ 0.744275] [drm] Loading RV630 Microcode
    [ 0.744345] [drm] Internal thermal controller without fan control
    [ 0.744386] [drm] radeon: power management initialized
    [ 0.744389] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 0.762830] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 0.762873] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 0.762874] [drm] Driver supports precise vblank timestamp query.
    [ 0.762937] [drm] radeon: irq initialized.
    [ 0.794780] [drm] ring test on 0 succeeded in 1 usecs
    [ 0.795253] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 0.795942] [drm] radeon atom DIG backlight initialized
    [ 0.795945] [drm] Radeon Display Connectors
    [ 0.795947] [drm] Connector 0:
    [ 0.795948] [drm] LVDS-1
    [ 0.795950] [drm] DDC: 0xac0 0xac0 0xac4 0xac4 0xac8 0xac8 0xacc 0xacc
    [ 0.795951] [drm] Encoders:
    [ 0.795952] [drm] LCD1: INTERNAL_LVTM1
    [ 0.795953] [drm] Connector 1:
    [ 0.795954] [drm] DIN-1
    [ 0.795955] [drm] Encoders:
    [ 0.795956] [drm] TV1: INTERNAL_KLDSCP_DAC2
    [ 0.795957] [drm] Connector 2:
    [ 0.795958] [drm] HDMI-A-1
    [ 0.795960] [drm] HPD1
    [ 0.795961] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
    [ 0.795963] [drm] Encoders:
    [ 0.795964] [drm] DFP1: INTERNAL_KLDSCP_TMDS1
    [ 0.795965] [drm] Connector 3:
    [ 0.795966] [drm] VGA-1
    [ 0.795968] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
    [ 0.795969] [drm] Encoders:
    [ 0.795970] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [ 1.278449] [drm] fb mappable at 0xD0141000
    [ 1.278451] [drm] vram apper at 0xD0000000
    [ 1.278453] [drm] size 9216000
    [ 1.278454] [drm] fb depth is 24
    [ 1.278455] [drm] pitch is 7680
    [ 1.278527] fbcon: radeondrmfb (fb0) is primary device
    [ 1.726069] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
    [ 1.770030] [drm] Initialized radeon 2.39.0 20080528 for 0000:01:00.0 on minor 0
    Until now and amongst others I tried the following things.
    Using kernel parameters
    video.use_native_backlight=1
    video.use_native_backlight=0
    acpi_osi=linux
    acpi_backlight=vendor
    and others I just cannot remember.
    Masking backlight
    systemctl mask systemd-backlight@backlight:acpi_video0.service
    systemctl mask systemd-backlight@backlight:radeon_bl0.service
    Setting bl_power
    echo 1 > /sys/class/backlight/acpi_video0/bl_power
    echo 1 > /sys/class/backlight/radeon_bl0/bl_power
    Nothing of the above was improving the situation.
    Your help on the problem would be highly appreciated.
    Best regards
    mgs
    Last edited by mgs (2014-10-27 10:15:11)

    Hello Trilby,
    thanks for the reply.
    Trilby wrote:If nomodeset worked with the installation medium, why haven't you tried that for the same problem on your installed system?
    The kernel parameter 'nomodeset' results in a working display but without X support, due to the fact that with 'nomodeset' there is no KMS support and therefore no X. But nevertheless I tried it and as expected X did not start.
    Trilby wrote:Could you also post information about your graphics card and what drivers you've installed.
    The graphics card is a Radeon HD 2700 and according to the above dmesg log it is recognized as RV 630. The radeon module is loaded via /etc/mkinitcpio.conf and xf86-video-ati (1:7.5.0-1) is installed.
    I hope the provided information is what you asked for, thanks for your help.
    Best regards
    mgs

  • Cannot establish SSL connection after fresh install

    Hello,
    I performed a fresh install a couple of days ago. Everything is fine, no hardware errors, pacman and curl work like a charm, HTTP servers respond as they should, but SSL servers do not respond the right way.
    I tried with elinks, chromium and firefox and they get stuck on SSL negotiations for very long times.
    Installed the whole thing again. Same issue.
    Just tested with:
    openssl s_client -connect facebook.com:443
    openssl s_client -connect google.com:443
    Seems to work fine, I can GET with no problems.
    Also tested with:
    wget --debug -O - https://facebook.com
    It gets stuck to "Initializing SSL handshake" and after a couple of minutes the connection is closed with error message "Unable to establish SSL connection."
    The system date/time are correct, the system is up to date, used the latest install image available at http://archlinux.org, installed following the install guide from the wiki.
    All tests performed as root.
    Last edited by icecoder (2013-05-30 10:07:14)

    WonderWoofy wrote:Initscripts maybe... ethernet... since I am not familiar with either of your systems, I cannot answer this.
    As I understand, the latest arch uses systemd by default, so there's no need installing initscripts and in https://wiki.archlinux.org/index.php/In … e_internet nothing said I have to configure network as I'm using DHCP.
    Last edited by tenzan (2012-10-22 00:02: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.

  • Why does is my mac running so slow even after fresh install?

    EtreCheck version: 1.9.11 (43) - report generated June 4, 2014 at 11:07:16 PM EDT
    Hardware Information:
              MacBook Pro (15-inch, Late 2008)
              MacBook Pro - model: MacBookPro5,1
              1 2.4 GHz Intel Core 2 Duo CPU: 2 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce 9400M - VRAM: 256 MB
              NVIDIA GeForce 9600M GT - VRAM: 256 MB
    System Software:
              OS X 10.9.2 (13C1021) - Uptime: 12 days 7:10:27
    Disk Information:
              Hitachi HTS543225L9SA02 disk0 : (250.06 GB)
                        EFI (disk0s1) /Volumes/firmwaresyncd.bTix74: 209.7 MB (186.5 MB free)
                        Mac HD (disk0s2) / [Startup]: 249.2 GB (128.92 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-868 
    USB Information:
              Apple Inc. Built-in iSight
              Apple Computer, Inc. IR Receiver
              Apple, Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    Gatekeeper:
              Mac App Store and identified developers
    Launch Daemons:
              [loaded] com.oracle.java.Helper-Tool.plist Support
    Launch Agents:
              [running] com.oracle.java.Java-Updater.plist Support
    User Launch Agents:
              [loaded] com.google.keystone.agent.plist Support
    User Login Items:
              iTunesHelper
              Dropbox
              Google Drive
              Google Chrome
              HazelHelper
    Internet Plug-ins:
              Default Browser: Version: 537 - SDK 10.9
              QuickTime Plugin: Version: 7.7.3
              JavaAppletPlugin: Version: Java 7 Update 45 Check version
    Safari Extensions:
              Evernote Web Clipper: Version: 6.1
              Open in Internet Explorer: Version: 1.0
              1Password: Version: 4.1.0
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
              Hazel  Support
              Java  Support
              teleport  Support
    Time Machine:
              Skip System Files: NO
              Auto backup: YES
              Volumes being backed up:
                        Mac HD: Disk size: 232.09 GB Disk used: 112.02 GB
              Destinations:
                        LaCie [Local] (Last used)
                        Total size: 465.64 GB
                        Total number of backups: 41
                        Oldest backup: 2014-01-10 05:53:37 +0000
                        Last backup: 2014-06-05 02:09:56 +0000
                        Size of backup disk: Adequate
                                  Backup size 465.64 GB > (Disk used 112.02 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  18%          mds
                   3%          WindowServer
                   1%          fontd
                   0%          ocspd
                   0%          Dropbox
    Top Processes by Memory:
              156 MB          com.apple.IconServicesAgent
              131 MB          Dropbox
              123 MB          softwareupdated
              115 MB          Google Chrome
              115 MB          Google Drive
    Virtual Memory Information:
              3.56 GB          Free RAM
              2.57 GB          Active RAM
              835 MB          Inactive RAM
              819 MB          Wired RAM
              1.34 GB          Page-ins
              0 B          Page-outs

    flytnn,
    after a fresh install, Spotlight will need to reïndex the files on your internal disk — that happens each time a fresh installation takes place.
    I see that you have OS X 10.9.2 installed. Are you planning on installing the 10.9.3 update?
    Your installed version of Java is outdated — the most recent version can be downloaded from here.

  • Wired internet doesn't work, even after fresh install?

    So i'm fairly new to the linux stuff, but for some reason I cannot get my wired internet (eth0) to work. Bear with me because I've got a decent tale to give to fill you in:
    After successfully installing archlinux for the first time, I was able to get the internet and everything working, but my boot manager was messed up. So I got a friend to fix that problem for me and I started updating my system through pacman. After successfully updating and changing the pacman mirror files I started downloading/installing gnome (and gnome-extra). I left it overnight and when I woke up in the morning all hell broke loose. After rebooting my computer and logging back into arch I found a number of my bash commands no longer worked (ifconfig, iwconfig, halt, shudown, reboot, dhcpcd, just to name a few I remember) so I had to manually turn off my labtop. At that point I decided to reinstall linux.
    After reinstalling linux my network troubles began and from that point on I can no longer connect to the pacman servers and my eth0 times out upon booting into linux every time (for those of you wondering, yes I did change in rc.conf the eth0="dhcp" like I was supposed to). I get a transient failure or something of the likes. The wierdest thing is this:
    When trying to reinstall linux using the ftp install I can configure my network (step 0), but when I get to trying to connect to a server and downloading the packages I fail to connect to the servers! Can someone please tell me what is going on?
    Just for a few more backgrounds, I am installing arch64 on an intel core-duo processor with it dual-booting with windows vista ultimate. I don't think any of this is the problem considering I had it working once up a time, but now for some reason it doesn't work so i'm hoping for my wiser archlinux users to help me out.
    EDIT: In a new turn of developments it seems my wired connection is now malfunctioning. Although just 5 hours ago at a friends house (when I was still having linux network problems) it worked just fine. My network card is a Intel(r) PRO/1000 PL card. Can my linux half screw up my windows half ethernet card and vice versa?
    Just tried to uninstall and then reinstall my ethernet card and my wired connection still doesn't work. Any suggestions?
    Last edited by evilviper77 (2008-04-12 18:27:18)

    Well after many hours of toil, it seems that it has now decided to work. Still have no clue why my wired connection failed for that duration of time, but whatever. Archlinux is installed and running fine so I suppose all ends well.

  • Please help with a few drivers for z60m after fresh install

    I got a bad virus(several actually) that I could not eradicate. I was advised to just wipe and reinstall the OS since it is not under warranty anymore. I could not find the recovery disk, must have been lost inthe last military move could not find a replacement recovery disk at the IBM website so  I went out and bought an xpprof OS thinking it should not be that hard to find any drivers XP does not provide . I had no problems doing that on our acer laptop and a friends HP laptop before so was pretty confident.. Boy was I wrong this has been the reinstall from hell. I reinstalled the audiodrivers from theIBM website but the speakers still don't work. The laptop will not recognize the wireless, even after installing the drivers for that and I can't find anything out about why the dock does not work, I assume there are drivers for that too. I also have 4 ugly yellow question marks that I can't seem to get rid of in device manager.  At this point I am already out the price of XP Prof but I really need this laptop my husband took the acer laptop when he deployed to Afghanistan, only because I was confident I could get this one fully functional.  I see now my self confidence was badly misplaced ,even though I am working on a degree in computer technology this laptop is kicking my tush.
    Is there anyone that could help please
    1. help me find why my speakers still dont work even though they are recognized as soundmax in device manager
              I found several references to this issue in the forums but there does not seem to be a resolution
    2. help me figure out why my laptop suddenly (after the fresh install)does not know it even has a wireless capability even after numerous attempts at installing the driver(driver seems to install just finebut upon reboot there is still no wireless available
    3. figure out how I can get my dock to work again
    the laptop has always worked great til now and all these things were functional before the virus and reinstall of the OS)
    4.  get rid of ugly yellow exclamation points under Other Devices, I am sure they must be important( I am sure at least one or more of them has to do with the wireless)
    sorry this is so long Im  just frustrated thanks so much for anyone that can give some guidance on this

    hanaleia, welcome to the forum,
    download and install ThinkVantage System Update, it should get the drivers for you. Please ensure you read down the site as you may need to install a patch for XP SP2.
    Let us know how you get on.
    Regards
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Demo servlet IsItWorking doesn't work after fresh install

    Hello,
    We did a fresh install of Oracle 9iAS 1.0.2.2 on Hp-ux 11i
    The installation completed succesfully, but
    when trying to run the demo servlet IsItWorking, we get error 'The page cannot
    be displayed'
    The apache error_log file contains following lines:
    [Thu Apr 18 17:12:03 2002] [notice] FastCGI: process manager initialized (pid
    9809)
    [Thu Apr 18 17:12:03 2002] [warn] OPM: ADM: process 9810 created server process
    9811 (group group1, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:03 2002] [emerg] OPM: Watcher starts with an id=9810
    [Thu Apr 18 17:12:03 2002] [warn] OPM: ADM: process 9810 created server process
    9812 (group group2, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:04 2002] [notice] Oracle HTTP Server Powered by Apache/1.3.19
    (Unix) mod_fastcgi/2.2.10 mod_perl/1.25 mod_oprocmgr/1.0 configured -- resuming
    normal operations
    [Thu Apr 18 17:12:18 2002] [warn] OPM: EW process rp5400:0 (pid:9811) died,
    restarting.
    [Thu Apr 18 17:12:18 2002] [warn] OPM: ADM: process 9810 created server process
    9819 (group group1, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:18 2002] [warn] OPM: EW process rp5400:0 (pid:9812) died,
    restarting.
    [Thu Apr 18 17:12:18 2002] [warn] OPM: ADM: process 9810 created server process
    9820 (group group2, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:21 2002] [warn] OPM: EW process rp5400:0 (pid:9819) died,
    restarting.
    [Thu Apr 18 17:12:21 2002] [warn] OPM: ADM: process 9810 created server process
    9821 (group group1, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:21 2002] [warn] OPM: EW process rp5400:0 (pid:9820) died,
    restarting.
    [Thu Apr 18 17:12:21 2002] [warn] OPM: ADM: process 9810 created server process
    9822 (group group2, module JServ), and inserted in proctable as entry 0
    [Thu Apr 18 17:12:23 2002] [error] OPM:Can not find one alive process
    [Thu Apr 18 17:12:23 2002] [error] OPM:Can not find one alive process
    [Thu Apr 18 17:12:24 2002] [warn] OPM: EW process rp5400:0 (pid:9821) died,
    restarting.
    [Thu Apr 18 17:12:24 2002] [warn] OPM: ADM: process 9810 created server process
    9824 (group group1, module JServ), and inserted in proctable as entry 0
    Any idea?
    Thanks

    Hi -
    I was wondering if you solved this problem. I had the exact same issue on Win2K after I installed the Java Portlet Development Kit. Now my Apache JServ does not work.
    This is a sample of my error_log:
    [Fri Jun 07 10:48:01 2002] [notice] FastCGI: process manager initialized
    [Fri Jun 07 10:48:08 2002] [error] OPM:Can not find one alive process
    [Fri Jun 07 10:48:08 2002] [error] [client 127.0.0.1] File does not exist: /servlet/IsItWorking
    [Fri Jun 07 10:51:22 2002] [warn] OPM: ADM: Process 380 terminated using SIGTERM successfully
    I have re-checked my jserv.properties, jserv.conf, zone.properties several times and I can't see the problem. I tried to manually remove the entire PDK and go back to my original state (I saved a copy of all my config files) but it still doesn't work.
    Did you find a way to fix this?
    Thanks!!!
    Heather

  • FireFox has stopped working and will not run after fresh install

    Yesterday I noticed that the address bar was not working and the graphics were not being shown correctly. When I typed in the address bar it would no atuto complete and even if i typed yahoo.com nothin would happen. The only way I could go to a website was to use my bookmarks.
    I did a fresh install and now it doesn't work at all. So, I uninstalled firefox and then did a fresh install. Sill nothing. IE, Chrome, and Safari work fine.

    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.com/kb/Server+not+found
    *https://support.mozilla.com/kb/Firewalls
    See also:
    *http://kb.mozillazine.org/Browser_will_not_start_up

  • Macbook Pro (mid 2012) inbuilt Track pad behaving erratically after fresh install of Yosemite 10.10.2

    I recently did a fresh install of the OS from online recovery. Mountain Lion was installed which I immediately upgraded to Yosemite 10.10.2. The trackpad started behaving erratically after two days. I seems that it started since I plugged one of my wifi router on the lan port. The trackpad is impossible to move as it seems to have a mind of its own. An external mouse connected works fine. Any help please !

    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear and again when you log in. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don’t do them all at once.
    Safe Mode - About
    Safe Mode - Yosemite

  • Spotlight not working after fresh install of Mac OS X

    Hi,
    I have erased and installed the Mac OS X on my powerbook and spotlight is not working. I have tried almost all the solutions provided on the forum.
    I have tried adding the root drive to the privacy section of the spotlight preferences but it doesn't list the drive at all.
    I have tried using spotless, Yasu, Cache out X, deleted the spotlight.plist file
    Nothing works! It should be working after a fresh install. My computer just came back after a hard drive replacement and the spotlight wasn't working even then. I thought a fresh install of the OS would help, but can't get it to work.
    Can anynody suggest anything? Your help would be highly appreciated.
    Thanks,
    Aditya

    Hi Tom,
    Thanks for the reply and the link.
    I re-installed the OS again! This time using the UNIX file system setting during installation. Then when I booted my computer, Spotlight worked like a dream. But then I connected my external firewire hard disk and it stopped working!
    Is there a work around for this, can I get spotlight to work again?
    Thanks,
    Aditya

  • Blue screen of death after fresh install of Win7 onto bootcamp!

    So I am currently running:
    I had this problem when I installed windows on bootcamp before but was told there was a driver error or it was a bad install on the windows. So I did a fresh install deleted the partition. I re-installed Windows 7 again with a different disk just to be safe. I am getting the exact same problem after I install all the drivers from the Bootcamp driver download. I feel like the problem could be related with the drivers being downloaded from the bootcamp software thats pre-installed on the mac. Any thoughts, any help?!
    Thanks,
    Ryan

    , Hello and thanks for posting on the HP support forums.  The first thing you will want to check is if there are any issues with the hard drive you put in.  Run the BIOS diagnostics for the hard drive and the hard ware to make sure there are no issues. HP Notebook PCs - System Diagnostics (F2) And. HP Notebook PCs - Testing a Hard Disk from the BIOS Please let me know how things go. Thanks again for posting and have a great day.

  • Socket/JVM_Bind Errors after fresh install

    I am trying to install Weblogic on a Development box on a fresh, additional Oracle Home. When running a clean Weblogic install and configuring a standard starter domain, I am unable to hit the console from my browser and I have no idea why. I configured the domain to use 7002 instead of the standard 7001 port so it would not conflict with the original Oracle Home's Weblogic install (although we will never have them both running simaltaneously - I just did it to be safe). I've tried using http://<IP ADDRESS>:7002/console, http://localhost:7002/console, and http://<DOMAIN NAME>:7002/console with no luck. It does not hang at all and just brings me to a "cannot display the page" message. I'm seeing JVM_Bind errors (server address already in use), although I know it is not in use. Here is the output I get when I start up Weblogic:
    Microsoft Windows [Version 6.0.6002]
    Copyright (c) 2006 Microsoft Corporation. All rights reserved.
    C:\Users\V-Tsmith>G:\Oracle\Middleware\user_projects\domains\base_domain\bin
    'G:\Oracle\Middleware\user_projects\domains\base_domain\bin' is not recognized a
    s an internal or external command,
    operable program or batch file.
    C:\Users\V-Tsmith>G:\Oracle\Middleware\user_projects\domains\base_domain\bin\sta
    rtWebLogic.cmd
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=
    48m -XX:MaxPermSize=128m
    WLS Start Mode=Development
    CLASSPATH=G:\Oracle\Middleware\patch_wls1036\profiles\default\sys_manifest_class
    path\weblogic_patch.jar;G:\Oracle\Middleware\patch_ocp371\profiles\default\sys_m
    anifest_classpath\weblogic_patch.jar;G:\Oracle\Middleware\jdk160_29\lib\tools.ja
    r;G:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic_sp.jar;G:\Oracle\Middle
    ware\wlserver_10.3\server\lib\weblogic.jar;G:\Oracle\Middleware\modules\features
    \weblogic.server.modules_10.3.6.0.jar;G:\Oracle\Middleware\wlserver_10.3\server\
    lib\webservices.jar;G:\Oracle\Middleware\modules\org.apache.ant_1.7.1/lib/ant-al
    l.jar;G:\Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contr
    ib.jar;G:\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbyclient.jar;G:\Or
    acle\Middleware\wlserver_10.3\server\lib\xqrl.jar
    PATH=G:\Oracle\Middleware\patch_wls1036\profiles\default\native;G:\Oracle\Middle
    ware\patch_ocp371\profiles\default\native;G:\Oracle\Middleware\wlserver_10.3\ser
    ver\native\win\32;G:\Oracle\Middleware\wlserver_10.3\server\bin;G:\Oracle\Middle
    ware\modules\org.apache.ant_1.7.1\bin;G:\Oracle\Middleware\jdk160_29\jre\bin;G:\
    Oracle\Middleware\jdk160_29\bin;C:\Program Files\CA\SC\CAWIN\;C:\xPression\Drive
    rs;E:\Program Files\Legato\nsr\bin;C:\Program Files\HP\NCU;C:\Windows\system32;C
    :\Windows;C:\Windows\System32\Wbem;C:\PROGRA~1\CA\SC\CAM\bin;C:\Program Files\CA
    \SC\Csam\SockAdapter\bin;C:\Program Files\CA\DSM\bin;C:\Program Files\CA\SC\CBB\
    ;G:\Oracle\Middleware\wlserver_10.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_29"
    Java(TM) SE Runtime Environment (build 1.6.0_29-b11)
    Java HotSpot(TM) Client VM (build 20.4-b02, mixed mode)
    Starting WLS with line:
    G:\Oracle\Middleware\jdk160_29\bin\java -client -Xms256m -Xmx512m -XX:CompileT
    hreshold=8000 -XX:PermSize=48m -XX:MaxPermSize=128m -Dweblogic.Name=AdminServer
    -Djava.security.policy=G:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic.p
    olicy -Xverify:none -da -Dplatform.home=G:\Oracle\Middleware\wlserver_10.3 -Dw
    ls.home=G:\Oracle\Middleware\wlserver_10.3\server -Dweblogic.home=G:\Oracle\Midd
    leware\wlserver_10.3\server -Dweblogic.management.discover=true -Dwlw.iterati
    veDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=G:\Oracl
    e\Middleware\patch_wls1036\profiles\default\sysext_manifest_classpath;G:\Oracle\
    Middleware\patch_ocp371\profiles\default\sysext_manifest_classpath weblogic.Ser
    ver
    <Oct 17, 2012 11:07:34 AM EDT> <Info> <Security> <BEA-090905> <Disabling CryptoJ
    JCE Provider self-integrity check for better startup performance. To enable thi
    s check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Oct 17, 2012 11:07:34 AM EDT> <Info> <Security> <BEA-090906> <Changing the defa
    ult Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disabl
    e this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Oct 17, 2012 11:07:35 AM EDT> <Info> <WebLogicServer> <BEA-000377> <Starting We
    bLogic Server with Java HotSpot(TM) Client VM Version 20.4-b02 from Sun Microsys
    tems Inc.>
    <Oct 17, 2012 11:07:35 AM EDT> <Info> <Management> <BEA-141107> <Version: WebLog
    ic Server 10.3.6.0 Tue Nov 15 08:52:36 PST 2011 1441050 >
    <Oct 17, 2012 11:07:36 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to STARTING>
    <Oct 17, 2012 11:07:36 AM EDT> <Info> <WorkManager> <BEA-002900> <Initializing s
    elf-tuning thread pool>
    <Oct 17, 2012 11:07:36 AM EDT> <Notice> <LoggingService> <BEA-320400> <The log f
    ile G:\Oracle\Middleware\user_projects\domains\base_domain\servers\AdminServer\l
    ogs\AdminServer.log will be rotated. Reopen the log file if tailing has stopped.
    This can happen on some platforms like Windows.>
    <Oct 17, 2012 11:07:36 AM EDT> <Notice> <LoggingService> <BEA-320401> <The log f
    ile has been rotated to G:\Oracle\Middleware\user_projects\domains\base_domain\s
    ervers\AdminServer\logs\AdminServer.log00002. Log messages will continue to be l
    ogged in G:\Oracle\Middleware\user_projects\domains\base_domain\servers\AdminSer
    ver\logs\AdminServer.log.>
    <Oct 17, 2012 11:07:36 AM EDT> <Notice> <Log Management> <BEA-170019> <The serve
    r log file G:\Oracle\Middleware\user_projects\domains\base_domain\servers\AdminS
    erver\logs\AdminServer.log is opened. All server side log events will be written
    to this file.>
    <Oct 17, 2012 11:07:37 AM EDT> <Notice> <Security> <BEA-090082> <Security initia
    lizing using security realm myrealm.>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to STANDBY>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to STARTING>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <LoggingService> <BEA-320400> <The log f
    ile G:\Oracle\Middleware\user_projects\domains\base_domain\servers\AdminServer\l
    ogs\base_domain.log will be rotated. Reopen the log file if tailing has stopped.
    This can happen on some platforms like Windows.>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <LoggingService> <BEA-320401> <The log f
    ile has been rotated to G:\Oracle\Middleware\user_projects\domains\base_domain\s
    ervers\AdminServer\logs\base_domain.log00002. Log messages will continue to be l
    ogged in G:\Oracle\Middleware\user_projects\domains\base_domain\servers\AdminSer
    ver\logs\base_domain.log.>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <Log Management> <BEA-170027> <The Serve
    r has established connection with the Domain level Diagnostic Service successful
    ly.>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to ADMIN>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to RESUMING>
    <Oct 17, 2012 11:07:38 AM EDT> <Error> <Server> <BEA-002606> <Unable to create a
    server socket for listening on channel "Default". The address 10.32.125.34 migh
    t be incorrect or another process is using port 7002: java.net.BindException: Ad
    dress already in use: JVM_Bind.>
    <Oct 17, 2012 11:07:38 AM EDT> <Error> <Server> <BEA-002606> <Unable to create a
    server socket for listening on channel "Default[8]". The address 127.0.0.1 migh
    t be incorrect or another process is using port 7002: java.net.BindException: Ad
    dress already in use: JVM_Bind.>
    <Oct 17, 2012 11:07:38 AM EDT> <Error> <Server> <BEA-002606> <Unable to create a
    server socket for listening on channel "Default[9]". The address 0:0:0:0:0:0:0:
    1 might be incorrect or another process is using port 7002: java.net.BindExcepti
    on: Address already in use: JVM_Bind.>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <Server> <BEA-002613> <Channel "Default[
    1]" is now listening on fe80:0:0:0:49ad:74ba:d80b:c53b:7002 for protocols iiop,
    t3, ldap, snmp, http.>
    <Oct 17, 2012 11:07:38 AM EDT> <Warning> <Server> <BEA-002611> <Hostname "NYOSEH
    STSTPR01.private.private.com", maps to multiple IP addresses: 10.32.125.34,
    fe80:0:0:0:51cf:60de:d2c5:c4dc%14>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <Server> <BEA-002613> <Channel "Default[
    2]" is now listening on fe80:0:0:0:8d6:9a3f:dfac:6dcf:7002 for protocols iiop, t
    3, ldap, snmp, http.>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <Server> <BEA-002613> <Channel "Default[
    7]" is now listening on fe80:0:0:0:754d:df3f:468f:a1b6:7002 for protocols iiop,
    t3, ldap, snmp, http.>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <Server> <BEA-002613> <Channel "Default[
    6]" is now listening on fe80:0:0:0:c914:19c3:967c:20ba:7002 for protocols iiop,
    t3, ldap, snmp, http.>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <Server> <BEA-002613> <Channel "Default[
    3]" is now listening on fe80:0:0:0:9c14:2ea0:9c82:1f28:7002 for protocols iiop,
    t3, ldap, snmp, http.>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <Server> <BEA-002613> <Channel "Default[
    5]" is now listening on fe80:0:0:0:51cf:60de:d2c5:c4dc:7002 for protocols iiop,
    t3, ldap, snmp, http.>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <Server> <BEA-002613> <Channel "Default[
    4]" is now listening on fe80:0:0:0:0:5efe:a20:7d22:7002 for protocols iiop, t3,
    ldap, snmp, http.>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <WebLogicServer> <BEA-000331> <Started W
    ebLogic Admin Server "AdminServer" for domain "base_domain" running in Developme
    nt Mode>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to RUNNING>
    <Oct 17, 2012 11:07:38 AM EDT> <Notice> <WebLogicServer> <BEA-000360> <Server st
    arted in RUNNING mode>
    When I first started it up after the install, I was having Socket Errors spit out after the "RUNNING" message (which for some reason isn't happening now):
    <Oct 17, 2012 11:03:36 AM EDT> <Critical> <Server> <BEA-002616> <Failed to liste
    n on channel "Default[4]" on fe80:0:0:0:0:5efe:a20:7d22:7002, failure count: 1,
    failing for 0 seconds, java.net.SocketException: socket closed>
    <Oct 17, 2012 11:03:37 AM EDT> <Critical> <Server> <BEA-002616> <Failed to liste
    n on channel "Default[4]" on fe80:0:0:0:0:5efe:a20:7d22:7002, failure count: 2,
    failing for 1 seconds, java.net.SocketException: socket closed>
    <Oct 17, 2012 11:03:39 AM EDT> <Critical> <Server> <BEA-002616> <Failed to liste
    n on channel "Default[4]" on fe80:0:0:0:0:5efe:a20:7d22:7002, failure count: 3,
    failing for 3 seconds, java.net.SocketException: socket closed>
    <Oct 17, 2012 11:03:42 AM EDT> <Critical> <Server> <BEA-002616> <Failed to liste
    n on channel "Default[4]" on fe80:0:0:0:0:5efe:a20:7d22:7002, failure count: 4,
    failing for 6 seconds, java.net.SocketException: socket closed>
    <Oct 17, 2012 11:03:46 AM EDT> <Critical> <Server> <BEA-002616> <Failed to liste
    n on channel "Default[4]" on fe80:0:0:0:0:5efe:a20:7d22:7002, failure count: 5,
    failing for 10 seconds, java.net.SocketException: socket closed>
    <Oct 17, 2012 11:03:51 AM EDT> <Critical> <Server> <BEA-002616> <Failed to liste
    n on channel "Default[4]" on fe80:0:0:0:0:5efe:a20:7d22:7002, failure count: 6,
    failing for 15 seconds, java.net.SocketException: socket closed>
    <Oct 17, 2012 11:03:57 AM EDT> <Critical> <Server> <BEA-002616> <Failed to liste
    n on channel "Default[4]" on fe80:0:0:0:0:5efe:a20:7d22:7002, failure count: 7,
    failing for 21 seconds, java.net.SocketException: socket closed>
    <Oct 17, 2012 11:04:04 AM EDT> <Critical> <Server> <BEA-002616> <Failed to liste
    n on channel "Default[4]" on fe80:0:0:0:0:5efe:a20:7d22:7002, failure count: 8,
    failing for 28 seconds, java.net.SocketException: socket closed>
    <Oct 17, 2012 11:04:12 AM EDT> <Critical> <Server> <BEA-002616> <Failed to liste
    n on channel "Default[4]" on fe80:0:0:0:0:5efe:a20:7d22:7002, failure count: 9,
    failing for 36 seconds, java.net.SocketException: socket closed>
    <Oct 17, 2012 11:04:21 AM EDT> <Critical> <Server> <BEA-002616> <Failed to liste
    n on channel "Default[4]" on fe80:0:0:0:0:5efe:a20:7d22:7002, failure count: 10,
    failing for 45 seconds, java.net.SocketException: socket closed>

    Hi,
    This clearly indicates that 7002 port is already used and it cannot bind with 7002 for now.
    Try to change with 7002 to other port number like 7003 or any thing will solve your problem.
    Regards,
    Kal

Maybe you are looking for