Xfce - localization

Hello, Im a newbie in linux. I have installed arch using wiki. Then I instaled xorg, xfce, xfce-goodies, dbus.
I have changed en_US to cs_CZ in locale.gen, then run locale-gen.
I would like to ask, how to change language in xfce. It is in English, and I would like to make it speak Czech, but I couldn't find how.
And what DM it is better to use with xfce. I must type starxfce4 at the begining.
Thank you.
EDIT:Solved a problem with localization.
Last edited by langoniery (2009-11-29 11:29:48)

Hey Oriol111,
Thanks for using Apple Support Communities.
If you need to change the language or keyboard on your iPhone, you can follow these articles.
iOS: How to change the language when it's set to one you don't understand
http://support.apple.com/kb/ht2371
iOS: Using international keyboards
http://support.apple.com/kb/HT4509
Have a nice day,
Mario

Similar Messages

  • USB flash disk is not mounting, Xfce doesn't remember the setting

    Hello,
    I'm new in Archlinux and I think I can't set up it well. I use Linux for four years /Ubuntu, Debian/.
    Now I have installed system with X server, Slim and Xfce.
    1/ I have one big problem. I want to automount my flashdisk but it doesn't work like in Debian. I don't know what is wrong. When I put my flashdisk to USB, it's blinkig but nothing else happened. But I see the flashdisk in lsusb
    [root@arch martin]# lsusb
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 004 Device 003: ID 04d9:048e Holtek Semiconductor, Inc. Optical Mouse
    Bus 001 Device 003: ID 1005:b113 Apacer Technology, Inc. Handy Steno 2.0/HT203
    2/ Xfce doesn't remember the settings... When I log out and log in again, the panel, desktop and keyboard have the default settings all the time.
    3/ All is in english. I'm from Czech Republic /excuse my bad english/ and I want to have applications in czech language. I've set up and generated locales but nothing happened...
    Thank you a lot to solve those problems!!
    Some files...
    rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
    # startup and during the boot process. If set to 'no', the C locale is used.
    # HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # Note: Using "localtime" is discouraged, using "" makes hwclock fall back
    # to the value in /var/lib/hwclock/adjfile
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # Note: if unset, the value in /etc/localtime is used unchanged
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="cs_CZ.utf8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK="localtime"
    TIMEZONE="Europe/Prague"
    KEYMAP="cz-qwertz"
    CONSOLEFONT="lat2-16"
    CONSOLEMAP="8859-2"
    USECOLOR="yes"
    # HARDWARE
    # MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
    # Replace every !module by an entry as on the following line in a file in
    # /etc/modprobe.d:
    # blacklist module
    # See "man modprobe.conf" for details.
    MODULES=(nvidia)
    # Udev settle timeout (default to 30)
    UDEV_TIMEOUT=30
    # Scan for FakeRAID (dmraid) Volumes at startup
    USEDMRAID="no"
    # Scan for BTRFS volumes at startup
    USEBTRFS="no"
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="arch"
    # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
    # Wired network setup
    # - interface: name of device (required)
    # - address: IP address (leave blank for DHCP)
    # - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
    # - broadcast: broadcast address (ignored for DHCP) (optional)
    # - gateway: default route (ignored for DHCP)
    # Static IP example
    #interface=eth0
    #address=192.168.0.2
    #netmask=255.255.255.0
    #broadcast=192.168.0.255
    #gateway=192.168.0.1
    # DHCP example
    interface=eth0
    address=
    netmask=
    gateway=
    #interface=
    #address=
    #netmask=
    #broadcast=
    #gateway=
    # Setting this to "yes" will skip network shutdown.
    # This is required if your root device is on NFS.
    NETWORK_PERSIST="no"
    # Enable these netcfg profiles at boot-up. These are useful if you happen to
    # need more advanced network features than the simple network service
    # supports, such as multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    # If something other takes care of your hardware clock (ntpd, dual-boot...)
    # you should disable 'hwclock' here.
    DAEMONS=(hwclock syslog-ng dbus udev evdev network netfs crond slim)
    eth0="dhcp"
    INTERFACES=(eth0)
    ROUTES=(!gateway)
    /etc/X11/xinit/xinitrc
    #!/bin/sh
    userresources=$HOME/.Xresources
    usermodmap=$HOME/.Xmodmap
    sysresources=/etc/X11/xinit/.Xresources
    sysmodmap=/etc/X11/xinit/.Xmodmap
    # merge in defaults and keymaps
    if [ -f $sysresources ]; then
    xrdb -merge $sysresources
    fi
    if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
    fi
    if [ -f "$userresources" ]; then
    xrdb -merge "$userresources"
    fi
    if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
    fi
    # start some nice programs
    if [ -d /etc/X11/xinit/xinitrc.d ] ; then
    for f in /etc/X11/xinit/xinitrc.d/* ; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    #twm &
    #xclock -geometry 50x50-1+1 &
    #xterm -geometry 80x50+494+51 &
    #xterm -geometry 80x20+494-0 &
    #exec xterm -geometry 80x66+0+0 -name login
    exec ck-launch-session startxfce4
    /etc/slim.conf
    # Path, X server and arguments (if needed)
    # Note: -xauth $authfile is automatically appended
    default_path /bin:/usr/bin:/usr/local/bin
    default_xserver /usr/bin/X
    xserver_arguments -nolisten tcp vt07
    # Commands for halt, login, etc.
    halt_cmd /sbin/shutdown -h now
    reboot_cmd /sbin/shutdown -r now
    console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
    #suspend_cmd /usr/sbin/suspend
    # Full path to the xauth binary
    xauth_path /usr/bin/xauth
    # Xauth file for server
    authfile /var/run/slim.auth
    # Activate numlock when slim starts. Valid values: on|off
    numlock on
    # Hide the mouse cursor (note: does not work with some WMs).
    # Valid values: true|false
    # hidecursor false
    # This command is executed after a succesful login.
    # you can place the %session and %theme variables
    # to handle launching of specific commands in .xinitrc
    # depending of chosen session and slim theme
    # NOTE: if your system does not have bash you need
    # to adjust the command according to your preferred shell,
    # i.e. for freebsd use:
    # login_cmd exec /bin/sh - ~/.xinitrc %session
    #login_cmd exec /bin/bash -login ~/.xinitrc %session
    login_cmd exec ck-launch-session startxfce4
    # Commands executed when starting and exiting a session.
    # They can be used for registering a X11 session with
    # sessreg. You can use the %user variable
    # sessionstart_cmd some command
    # sessionstop_cmd some command
    # Start in daemon mode. Valid values: yes | no
    # Note that this can be overriden by the command line
    # options "-d" and "-nodaemon"
    # daemon yes
    # Available sessions (first one is the default).
    # The current chosen session name is replaced in the login_cmd
    # above, so your login command can handle different sessions.
    # see the xinitrc.sample file shipped with slim sources
    sessions xfce4,icewm,wmaker,blackbox
    # Executed when pressing F11 (requires imagemagick)
    screenshot_cmd import -window root /slim.png
    # welcome message. Available variables: %host, %domain
    welcome_msg Welcome to %host
    # Session message. Prepended to the session name when pressing F1
    # session_msg Session:
    # shutdown / reboot messages
    shutdown_msg The system is halting...
    reboot_msg The system is rebooting...
    # default user, leave blank or remove this line
    # for avoid pre-loading the username.
    default_user martin
    # Focus the password field on start when default_user is set
    # Set to "yes" to enable this feature
    #focus_password no
    # Automatically login the default user (without entering
    # the password. Set to "yes" to enable this feature
    #auto_login no
    # current theme, use comma separated list to specify a set to
    # randomly choose from
    #current_theme default
    current_theme archlinux-darch-white
    # Lock file
    lockfile /var/lock/slim.lock
    # Log file
    logfile /var/log/slim.log
    locale -a
    [root@arch martin]# locale -a
    C
    POSIX
    cs_CZ.utf8
    en_US
    en_US.iso88591
    en_US.utf8
    Last edited by Zelva (2011-09-05 18:19:15)

    With xfce4 I use .....mount /dev/sd(xx) /mnt/md...
    Setup .../mnt/md in /mnt with ..cd /mnt...mkdir /mnt/md
    This will mount the flash drive.
    I do not know automount for xfce4.

  • [SOLVED] Reinstalling Arch on pure systemd - Localization problem.

    Hi
    I have accident regarding today filesystem update, so I decide to install arch again on pure systemd from the begining.
    I am now on freshly installed xfce  and i just noticed my userspace is totally not localized, despite proper localization steps.
    /etc/locale.gen
    pl_PL.UTF-8 UTF-8
    # cat /etc/vconsole.conf
    KEYMAP=pl
    FONT=lat2-16
    CONSOLEFONT=lat2a-16
    FONT_MAP=8859-2
    # locale -a
    locale: Cannot set LC_CTYPE to default locale: No such file or directory
    locale: Cannot set LC_COLLATE to default locale: No such file or directory
    C
    POSIX
    pl_PL.utf8
    locale: Cannot set LC_CTYPE to default locale: No such file or directory
    locale: Cannot set LC_ALL to default locale: No such file or directory
    LANG=pl_PL.utf8@euro
    LC_CTYPE="pl_PL.utf8@euro"
    LC_NUMERIC="pl_PL.utf8@euro"
    LC_TIME="pl_PL.utf8@euro"
    LC_COLLATE="pl_PL.utf8@euro"
    LC_MONETARY="pl_PL.utf8@euro"
    LC_MESSAGES=C
    LC_PAPER="pl_PL.utf8@euro"
    LC_NAME="pl_PL.utf8@euro"
    LC_ADDRESS="pl_PL.utf8@euro"
    LC_TELEPHONE="pl_PL.utf8@euro"
    LC_MEASUREMENT="pl_PL.utf8@euro"
    LC_IDENTIFICATION="pl_PL.utf8@euro"
    LC_ALL=
    What i should do?
    Last edited by utops (2012-10-06 11:46:37)

    utops wrote:
    karol wrote:
    Create ~/.config/locale.conf
    $ cat $HOME/.config/locale.conf
    LANG="pl_PL.UTF-8"
    and reboot.
    I know nothing about xfce, but can you tell me what part of the console stuff is in English? Can you copy / paste an example?
    $HOME config don't work either.
    From grub to login and from using CLI apps like nano and wifi-menu,mc,no polish language there.
    Everything is in english...
    Like system sudenly goes blind and don't see what i put in to configs.
    Everything worked well on my old pretty instalation i already miss that times.
    EDIT:
    Sudenly it worked again.
    Dunno what happened,just working again...
    Ok,so thx for tips guys,have a good evening...
    see my previous post.
    please mark the thread as solved.

  • Problem with xfce and/or mouse and keyboard

    Hi!
    Two days ago I've turned on my laptop with Arch and the display manager Slim has frozen immediately. Later on Single-User mode I've uninstalled it. Now in normal mode when I type "startxfce4" everything is showing up, but the mouse and keyboard don't work. I know it's not frozen, because animation of mouse and CPU Frequency Monitor is on.
    Strange fact is that laptop is not connecting with the Internet, so now I don't know where the problem is.
    It's happening when I start xfce both from user and super user.
    Just before those troubles I've updated everything with "pacman -Syu", but I haven't seen anything strange. Also the computer could have been roughly turned off (by unplugging power supply), when was turning on.
    Thanks,
    Gaba

    Sorry for not replying, but I didn't have access to my laptop by this time.
    On grub I have only normal mode and 'fallback' mode, so I have result from 'journalctl' from normal mode.
    I'm sending the fragment of this file where you can see everything after I typed 'startxfce4' in console:
    http://codepad.org/8pYIj8qC
    I see that something is wrong, but after some attempts I don't know how to fix this ^^
    Edit:
    Oh, I forgot to write, that I've tried activate some drivers from 'lspci -k' (there were no "Kernel driver in use:..." in almost every device), but it didn't fi anything.
    Last edited by gargoyle (2015-03-15 23:20:18)

  • Palm Missing Localization Information Display after Mac OS 10.4.6 Update

    Recently I installed the Mac OS 10.4.6 update after confirming that it should improve some minor issues with "Hot Synching".
    Previously I could "Hot Synch" with my Palm Mac Desk Top software 4.2.1 and also with my PC with no issues. My Palm is using Palm OS 4.5, I believe.
    Now I can still can "Hot Sync" on my Mac--with no issues. However, when I take the Palm out of the USB Cradle and try to access the Palm Display page with the featured icons, I get a very unusual error:
    "Application can not be launched because it is missing localization info file xxx--enUS.prc."
    I checked the Palm site and entered the error message and the response was returned that indicated "several applications with the Palm Tungsten T require overlay files to run properly. "Dialer, SMS, & WAP Browser" require and overlay "prc" file that determines which language the application displays on the device. If this "prc" file is missing, it will cause this message to be displayed."
    I was instructed to install the "xxx_enUS.prc" using the Palm Install tool.
    I installed all of the "xxx_enUS.prc" files on Disk 2 and have performed a "Hot Sync" again. A successful "Hot Synch" was performed.
    The above message is still displayed on the Palm screen even after that successful "Hot Synch".
    I can not use any of the screen icons to select any of the features or vprograms on the Palm.
    The face buttons can be depressed but the selection from the Palm hand held icons with the stylus can not be accessed as the "missing localization info, ect" is displayed.
    I have performed soft resets to no avail.
    I still can not get this issues resolved.
    Recently I instlled iSynch and the problems still occur.
    Anyone out there have any suggestions.
    POWER MAC G-4 (933 MHz QuickSilver) Mac OS X (10.4.6) iSite
    POWER MAC G-4 (933 MHz QuickSilver)   Mac OS X (10.4.6)   iSite

    When I do Command-I, I see that I have read/write access for the local drive - depending on the machine I am sitting at - and the other networkeded drives allow read only.
    I guess the question is - how does the system know a user with the same username and password are actually the same person?
    Robert

  • Administração de boletos em  Localização Brasil

    Prezados,
    O SAP Business One precisa se adaptar à localização brasil a que se refere a adminsitração de boleto.
    Dois pontos que notei:
    1 - Mudar data de vencimento quando o boleto estiver no status enviado gerado ou depositado. (esse primeiro já postei no SAP Business One Product Development Collaboration), pois aqui no Brasil é muito comum mudar data de vencimento por demora na entrega da mercadoria por exemplo. da forma como está no B1 tem que cancelar o boleto, alterar a data e depois gerá-lo novamente fazendo com que perca a referência do boleto.
    2 - Dar desconto ou juros no boleto com o boleto no status depositado viabilza, pois não precisaria fazer lançameto manual contábil para contas de maior ou a menor, pois é muito comum no brasil descontos até a data de vencimento, mas não da forma como o SAP B1 faz (na condição de pagamento no Brasil não funciona).
    Se a SAP fizer issoficará mais fácil , agil e interessante na criação de relatórios como o de comissão por exemplo.
    Se eu cancelar o boleto e criá-lo novamente  como o desconto eu perco a referência e atraso o meu processo.
    Estas duas sugestões só seriam permitidas usar com autorização de usuário.
    Att,
    Lucidio Gandra Alves

    Dear,
    SAP Business One must adapt to the location Brazil referred to the Administration of billet.
    Two points I noticed:
    1 - Change the due date, when the billet is in the status sent generated or deposited. (I posted this first in SAP Business One Product Development Collaboration), because here in Brazil is very common to change the due date for delay in delivery of goods for example. how is the B1 has to cancel the ticket, change the date and then regenerate it causing him to lose the reference of the billet.
    2 - Give a discount or interest in the slip with the slip in status filed viabilza therefore do not need lançameto manual accounting for accounts more or less as it is very common in Brazil discounts to maturity, but not the way the SAP B1 is (provided that payment in Brazil does not work).
    If SAP makes it easy issoficará, agile and interesting in reporting as the commission for example.
    If I cancel the slip and create it again as the discount I lose my reference and delay the process.
    These two suggestions would be permitted to use only authorized user.
    Lucidio Gandra Alves

  • Localização Brasil - Preparação do ambiente

    Prezados,
    Gostaria de tirar uma dúvida sobre a preparação do ambiente para implementação da Localização Brasil.
    [Situação]
    Estou atuando em um projeto de rollout internacional e a equipe de TI deseja realizar o processo de preparação do ambiente para Localização Brasil.
    Passamos as instruções iniciais a seguir para prepação do ambiente, conforme links abaixo:
    Criação do client com cópia do client 000;
    Execução da transação O035 para alterar o template para Brasil;
    Execução das CATT de MM e SD;
    Comparar client 000 com novo client, para incluir objetos na request;
    Transporte para o ambiente DEV;
    Início da realização.
    É desta forma que trabalhei até o presente momento em projetos anteriores.
    No entanto, a equipe de TI ficou com algumas dúvidas sobre o processo e entrou em contato com a SAP Alemanha para obter maiores detalhes. Em reunião com a equipe SAP Alemanha, fomos informados que não se executa mais a transação O035 por esta transação alterar informações em diversas tabelas. Ao invés disto há outro processo, onde são selecionados objetos no client 000 e incluidos em uma request (como pricing de MM e SD, tipos de Nota Fiscal, tipo de item de Nota Fiscal, etc.) e transportados para o DEV. Neste contato, não haviam pessoas da SAP Brazil envolvidas.
    Informaram também que não é necessário copiar a empresa/centro 0001 para criar a estrutura organizacional para o Brasil, pode ser realizada a cópia de qualquer centro utilizado em outro país como referência.
    Não encontrei nenhuma documentação sobre este processo, e as documentações mais recentes que localizei recomendam a utilização o Country Installation Program (transação O035).
    [Dúvida]
    A SAP hoje sugere outra forma de preparação do ambiente para Localização Brasil, que não a descrita nos documentos abaixo? Em caso positivo, qual seria o caminho?
    Pesquisando em outros forums, verifiquei a informação que há um site da própria SAP onde é possível informar características do sistema (versão, suporte package, enhancement package, etc) e o site informa quais as notas requeridas para a implementação da Localização Brasil.
    [Informações adicionais]
    Nesta dúvida, não me refiro a notas específicas de processos, como CBT (1706309), MP135, CT-e, NF-e 3.10 etc. A dúvida em sí é sobre a preparação para início das configurações dos processos de negócio.
    [Links de referência]
    Seguem abaixo os links de referência:
    Brazil - SAP Library  (ECC 6.0 EHP 7)
    Quick guide for Brazilian Localization Installation
    Atenciosamente,
    Rafael

    Olá Rafael,
    Também entramos em contato com a responsável na Alemanha  sobre o installation guide para Brasil, mas não obtivemos resposta ainda.
    Na verdade você ainda poderia utilizar a O035 porém o esforço nas configurações seria um pouco maior.
    Assim que eu tiver maiores informações como link para documentação ou qualquer outra informação, posto aqui no SCN.
    Peço também que visite nosso blog de NF-e para outras atualizações.
    http://scn.sap.com/community/portuguese/sped-and-nf-e/blog
    ERP KBA: 2125859 - KBA [3.10] NF-e 3.10 Go-live checklist for SAP ERP
    ERP GRC NF-e: 2123768 KBA [3.10] NF-e 3.10 go-live checklist for SAP NF-e GRC
    Att,
    Adriel

  • Localização Portuguesa e Defir

    Bom dia,
    Relativamente às declarações peródicas do IVA no SAP 2007A, depois de preenchidos os campos da configuração do IVA na localização portuguesa (Sujeito_XX, Base_XX, Estado_XX), devemos ir a Relatórios -> Financeira -> Contabilidade -> Imposto -> Relatório de IVA e exportar para o Defir.
    O problema é que ao exportar para o Defir, ao ir a "Declarações periódicas do IVA", as declarações não apresentam qualquer tipo de valor. Há algum passo necessário além dos que referi?
    Alguém me pode ajudar com esta questão?
    Obrigado e cumprimentos,
    Pedro Santos

    Boa tarde Susana,
    Antes de mais, muito obrigado pela resposta. O problema penso que é mesmo não estarem os campos de IVA todos preenchidos com o "Sujeito_XXX", "Base_XXX", etc. Não sei se bastará isso para a declaração ser preenchida.
    Já agora, relativamente ao modelo22, sabe-me dizer quais os passos necessários para preencher automaticamente a declaração? Já encerrei o ano contabilistico e exportei o balancete para o Defir, mas também não tenho valores no modelo22.
    Desde já agradeço a atenção.
    Cumprimentos,
    Pedro Santos
    Edited by: Paulo Calado on Jun 15, 2009 7:53 PM
    Edited by: Paulo Calado on Nov 27, 2009 5:25 PM

  • The xfce-4.4 themes contest discussion

    As stated on http://blog.archlinux.org I posted the files for the contest on my server: http://arch.justdreams.net/xfce44-themings.tar.gz
    I recommend to either fetch shadowhands xfce4-svn packages or the set I offer here http://arch.justdreams.net/xfce4-pkgs/
    I use it already for daily use and didn't encounter serious problems.
    The things you should consider if you like to add an entry.
    · a usable, nice WM theme not too small and not too large, fitting for users from laptop sized screens to dual widescreen setups.
    · a background image, that doesn't steal focus from work (read: no strong contrast, everything in like colors, makes it possible to use (semi)-transparent terminals, scales well over several desktop sizes, also fits on non 4:3 screens)
    · a nice gtk-theme using gtk-xfce-engine (read: come with corporate colors, don't waste space but have usable handles) gtk-xfce-engine stays part of 4.4 (there were discussions to ditch the gtk-xfce-engine in favor of gtk's new standard engine clearlooks)
    · a nice splashscreen theme (no real reglementations apart from colors)
    for xfwm4 themes you wanna read http://www.xfce.org/xfwm4-theme-howto/
    Xfwm-4.4 has some new features:
    - you can use svg instead of png files (check: http://foo-projects.org/pipermail/xfce4 … 21447.html for some details)
    - you can replace the menu button by adding "show_app_icon=true" in themerc
    The files you find in my tarball reflect the way I was working:
    - create the design
    - split design into the shape parts (provided by the xpm picturesthat can actually pick up gtk colours) and the shade parts(transparent pictures on top of xpms either png or svg)
    - build the actual buttons (shape, colour etc)
    - I exported the xpm from gimp and used a whole bunch of sed lines to flip colours to get the pressed and -active state (se the shell script in te directory for details)
    The background image isn't tricky.
    I added my gtkrc file in the tarball. It was mainly created from studying other gtkrc files since I didn't find some serious documentation on it.
    The splashscreen is pretty much straight forward. I added a .blend file for a rendered Arch symbol. You don't have to use it. The old theme used the balou engine - you can use any other or write your own. Doesn't matter.
    XFCE-4.4 is at rc1 at the moment. I think it's gonna take another month b4 it hits the final. After that we will have a poll at the forum to figure which theme the users like best.

    rezza wrote:
    Cimi wrote:
    Yeah thanks! I think you can redraw buttons in rezlooks and use my function with CL_CORNER_NONE to get better look with squared theme.
    Anyway what have you *stealed* from my works? yes i like that someone appreciate my works but it's always not fun thinking you've worked for days and someone *copy* your code. I hope this *steals* are originals since that could be an improvement not a simple copy! My engines are based on rezlooks/clearlooks but i've done a lot of original work for them!
    "God bless opensource" as you said, I totally agree, expecially it the ways it comes with original things and not copies!
    Hehehe, by "stealing", I only mean stuff like using that function to draw rectangles instead of just cairo_rectangle, stuff that you suggested anyway... most of the original stuff you do for Murrine would be wrong for Rezlooks anyway.
    Yeah, I'll chat to you on IRC sometime soon, we can discuss some things. I've been very busy with real life recently, haven't had a chance to do any work on Rezlooks for a while, I am still planning on releasing 0.7 at some point though... And yeah, that collaborative engine we talked about will be awesome
    Ok I just want to focus that murrine_rounded_rectangle has to be rewrite for with the next release of cairo (1.4.0) that will be released the next month will have a great performance improvement where lines are drawn aligned. In the current cairo version there's a bug in cairo_stroke which is twice slow than cairo_fill, so unless you fill the stroke of unaligned lines appears slow as aligned ones.
    With next cairo release the "stroke bug" will be fixed and we'll have to rewrite function to get the new performance boost.
    I had found occasionaly this bug yesterday when i was stripping down murrine toghether with benzea and thos, gnome developers.
    If you see in the gnome cvs you'll find new fixing in a lot of engines that get twice as fast by implementing cairo_fill instead of cairo_stroke, waiting new cairo release for reverting it back...

  • How to Change URL of BPA after clicking on Open Document in PO Notification for India Localization?

    In the Purchase Order Approval workflow notification , there are two links at the bottom of page under heading REFERENCES,
    - view PDF
    - open document
    So when we click on open document, the Oracle Forms loads and  purchase order screen will appear in the screen.
    In case of India localization, for standard PO the India local screen opens, where we can see the taxes by clicking on Taxes Button.
    But in case of blanket purchase agreements, when we click on open document link from the notification,we are routed to the application with the screen of global purchase order, instead it
    should go to Purchase Orders(Localization).
    We want to move to the India local po screen for BPA.
    So please let me know, where I can change the URL for Blanket Purchase Agreements.
    Regards
    Sandeep

    Hi kalyani,
    Please check my inbound plug code...tell me what changes wee need to do and where wee need to add this code...once again thanks for your reply..
    METHOD
    ip_inboundplug.
    **CALL METHOD SUPER->IP_INBOUNDPLUG
    ** EXPORTING
    ** iv_collection = iv_collection.
    DATA: lt_ivr_url_param TYPE tihttpnvp,
    ls_ivr_url_param TYPE ihttpnvp,
    lr_searchcustomer TYPE REF TO if_bol_bo_property_access,
    ls_searchcustomer TYPE crmt_bupa_il_header_search.
    CALL METHOD cl_crm_ui_session_manager=>get_initial_form_fields
    CHANGING
    cv_fields = lt_ivr_url_param.
    lr_searchcustomer ?= me->typed_context->searchcustomer->collection_wrapper->get_current( ).
    CHECK lr_searchcustomer IS BOUND.
    READ TABLE lt_ivr_url_param INTO ls_ivr_url_param WITH KEY name = 'sap-phoneno'. "'sap-phoneno'.
    IF ls_ivr_url_param-value IS NOT INITIAL.
    ls_searchcustomer-telephone = ls_ivr_url_param-value.
    CALL METHOD lr_searchcustomer->set_properties( EXPORTING is_attributes = ls_searchcustomer ).
    eh_onsearch( ).
    ENDIF.
    ENDMETHOD

  • [SOLVED]Mounting usb drives "not authorized" with thunar-volman (XFCE)

    Hi,
    I'm new to Arch (even though I must be approximately at my 15th try at installing it properly) and I have a problem with thunar-volman.
    Whenever I log in as user, and try to mount a usb drive with thunar, let's say I want to plug a drive labeled Ext3_8Go, I get the same message in a pop-up window : "Failed to mount Ext3_8Go (or anything close, not in English in the text), not authorized (that part is in English)"
    My install is :
    - net install
    - partitions : 9Go for /, no swap, no separate /home
    - packages : base and base-devel. The only modifications in the package list is that I remove ppp, pcmciautils, and xfsprogs.
    - config : at the install stage I only modify rc.conf to change LOCALE and HOSTNAME, and pacman's mirrorlist to allow all French mirrors in addition to the one at the top.
    When the usb installation is over, I run this script :
    "installation_xfce.sh"  (there may be some errors left, I modify this script as I learn) :
    #!/bin/bash
    # expected environment : freshly installed archlinux, login : root.
    echo "Are you connected to internet ? If not, please Ctrl+C and reload this script when connected"
    echo "Otherwise, press ENTER to continue installation"
    read var_dummy
    echo "Creation of the user : please type in your user name :"
    read var_username
    useradd -u 1000 -g users -G audio,lp,storage,optical,video,wheel,games,power,network -d /home/$var_username/ -s /bin/bash -m $var_username
    echo "You will now be asked to create the password for this user:"
    passwd $var_username
    # Add servers for pacman to find packages
    cat >> /etc/pacman.conf << EOF
    [multilib]
    Include = /etc/pacman.d/mirrorlist
    [archlinuxfr]
    Server = http://repo.archlinux.fr/\$arch
    [catalyst]
    Server = http://catalyst.apocalypsus.net/repo/catalyst/\$arch
    EOF
    # Install packages
    pacman -Syyu
    pacman -S acpi acpid alsa-oss alsa-plugins alsa-utils catalyst catalyst-utils cpufrequtils cups dbus gstreamer0.10-base-plugins iptables laptop-mode-tools mesa net-tools netcfg ntp pm-utils rfkill rsync sudo ttf-dejavu vim wireless_tools xf86-input-evdev xorg-server xorg-utils xorg-xinit xorg-xinput yaourt conky gamin gnome-icon-theme gnome-keyring gvfs-afc network-manager-applet networkmanager slim slim-themes archlinux-themes-slim hicolor-icon-theme xfce4 xfce4-goodies
    # If pacman failed, better stop the script here, and wait for a network connection
    if [[ $?!=0 ]]
    then
    echo : failed to install packages - check your network connection, or review script
    exit 1
    fi
    # Fix sound issue
    cat > /home/$var_username/.asoundrc << EOF
    pcm.!default{
    type hw
    card 1
    device 0
    ctl.!default{
    type hw
    card 1
    device 0
    EOF
    chown $var_username:users /home/$var_username/.asoundrc
    # Configure video settings for X to use Catalyst
    if [[ ! -e /etc/X11/xorg.conf.d ]]
    then
    mkdir /etc/X11/xorg.conf.d
    fi
    cat > /etc/X11/xorg.conf.d/20-fglrx.conf << EOF
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    EndSection
    EOF
    sed -e 's/top_left/bottom_right/' -e '/alignment/i\double_buffer yes' -e '/CPU Usage/a\${color lightgrey}Temperatures:' -e '/CPU Usage/a\ CPU:$color ${hwmon 0 temp 1}°C' </etc/conky/conky.conf >/home/$var_username/.conkyrc
    chown $var_username:users /home/$var_username/.conkyrc
    # Install clickpad support
    yaourt -S xf86-input-synaptics-clickpad
    # Add french keyboard to X
    sed '/MatchIsKeyboard/a\\tOption "XkbLayout" "fr"' </etc/X11/xorg.conf.d/10-evdev.conf >/etc/X11/xorg.conf.d/10-evdev.conf.new
    mv -f /etc/X11/xorg.conf.d/10-evdev.conf.new /etc/X11/xorg.conf.d/10-evdev.conf
    # Add new daemons, remove old ones, disable hwclock and remove netfs since I don't use it. add it if you need it
    sed '/DAEMONS=/c\DAEMONS=(!hwclock dbus syslog-ng networkmanager laptop-mode acpid @alsa @cupsd @cpufrequtils ntpd crond)' </etc/rc.conf >/etc/rc.conf.new
    mv -f /etc/rc.conf.new /etc/rc.conf
    # Slim login manager ; change theme
    mv /usr/share/slim/themes/archlinux-darch-grey /tmp/
    mv /usr/share/slim/themes/default /tmp/
    rm -r /usr/share/slim/themes/*
    mv /tmp/archlinux-darch-grey /usr/share/slim/themes
    mv /tmp/default /usr/share/slim/themes
    sed '/^current_theme/c\current_theme archlinux-darch-grey' </etc/slim.conf >/etc/slim.conf
    # XFCE login, and thunar launched as a daemon
    sed '/^# exec/c\' </etc/skel/.xinitrc >/tmp/.xinitrc
    sed '/^# .../c\' </tmp/.xinitrc >/home/$var_username/.xinitrc
    cat >> /home/$var_username/.xinitrc << EOF
    exec ck-launch-session startxfce4
    thunar --daemon &
    EOF
    chown $var_username:users /home/$var_username/.xinitrc
    # Boot to runlevel 5 now, and run slim then
    sed -e 's/id:3/#id:3/' -e 's/#id:5/id:5/' -e 's|x:5:respawn:/usr/bin/xdm|#x:5:respawn:/usr/bin/xdm|' -e 's|#x:5:respawn:/usr/bin/slim|x:5:respawn:/usr/bin/slim|' </etc/inittab >/etc/inittab.new
    mv -f /etc/inittab.new /etc/inittab
    # Add colored prompt to user and root
    sed '/^PS1/c\' </etc/skel/.bashrc >/root/.bashrc
    cat >> /root/.bashrc << EOF
    PS1='\[\e[0;32m\]\u@\h\[\e[m\] \[\e[0;35m\]\w\[\e[m\] \[\e[m\] \[\e[0;32m\]\t -\[\e[m\] \[\e[1;31m\]\$ \[\e[m\] '
    EOF
    cp /root/.bashrc /home/$var_username/.bashrc
    chown $var_username:users /home/$var_username/.bashrc
    # How does one do that automatically ?
    # Manually add user to sudoers
    EDITOR="vim" visudo
    # Reboot, because it's quick and I'm too lazy to learn how to start all the daemons and others.
    reboot
    I can mount as a user, no password asked, with :
    udisks --mount /dev/sdb2
    but the GUI method tells me "not authorized".
    "groups user" outputs :
    lp wheel games network video audio optical storage power users
    the command "ck-list-sessions" outputs :
    Session2:
    unix-user = '1000'
    realname = ''
    seat = 'Seat1'
    session-type = ''
    active = TRUE
    x11-display = ':0.0'
    x11-display-device = '/dev/tty7'
    display-device = ''
    remote-host-name = ''
    is-local = TRUE
    on-since = '2011-08-15T08:56:03.716103Z'
    login-session-id = '1'
    Session1:
    unix-user = '1000'
    realname = ''
    seat = 'Seat2'
    session-type = ''
    active = FALSE
    x11-display = ':0.0'
    x11-display-device = ''
    display-device = ''
    remote-host-name = ''
    is-local = TRUE
    on-since = '2011-08-15T08:56:03.573029Z'
    login-session-id = '1'
    For those who don't have time to read the installation script, DBUS is in the DAEMONS list of rc.conf, and .xinitrc launches : exec ck-launch-session startxfce4
    Any idea ?
    Last edited by choubbi (2011-08-15 15:05:04)

    Thanks a lot !
    That worked !
    I stumbled across this part of the wiki several times before, but didn't really understand so I had not tried.
    If anyone's interested in the script, here's the corrected version :
    #!/bin/bash
    # expected environment : freshly installed archlinux, login : root.
    echo "Are you connected to internet ? If not, please Ctrl+C and reload this script when connected"
    echo "Otherwise, press ENTER to continue installation"
    read var_dummy
    echo "Creation of the user : please type in your user name :"
    read var_username
    useradd -u 1000 -g users -G audio,lp,storage,optical,video,wheel,games,power,network -d /home/$var_username/ -s /bin/bash -m $var_username
    echo "You will now be asked to create the password for this user:"
    passwd $var_username
    # Add servers for pacman to find packages
    cat >> /etc/pacman.conf << EOF
    [multilib]
    Include = /etc/pacman.d/mirrorlist
    [archlinuxfr]
    Server = http://repo.archlinux.fr/\$arch
    [catalyst]
    Server = http://catalyst.apocalypsus.net/repo/catalyst/\$arch
    EOF
    # Install packages
    pacman -Syyu
    pacman -S acpi acpid alsa-oss alsa-plugins alsa-utils catalyst catalyst-utils cpufrequtils cups dbus gstreamer0.10-base-plugins iptables laptop-mode-tools mesa net-tools netcfg ntp pm-utils rfkill rsync sudo ttf-dejavu vim wireless_tools xf86-input-evdev xorg-server xorg-utils xorg-xinit xorg-xinput yaourt conky gamin gnome-icon-theme gnome-keyring gvfs-afc network-manager-applet networkmanager slim slim-themes archlinux-themes-slim hicolor-icon-theme xfce4 xfce4-goodies
    # If pacman failed, better stop the script here, and wait for a network connection
    if [[ $?!=0 ]]
    then
    echo : failed to install packages - check your network connection, or review script
    exit 1
    fi
    # Fix sound issue
    cat > /home/$var_username/.asoundrc << EOF
    pcm.!default{
    type hw
    card 1
    device 0
    ctl.!default{
    type hw
    card 1
    device 0
    EOF
    chown $var_username:users /home/$var_username/.asoundrc
    # Configure video settings for X to use Catalyst
    if [[ ! -e /etc/X11/xorg.conf.d ]]
    then
    mkdir /etc/X11/xorg.conf.d
    fi
    cat > /etc/X11/xorg.conf.d/20-fglrx.conf << EOF
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    EndSection
    EOF
    sed -e 's/top_left/bottom_right/' -e '/alignment/i\double_buffer yes' -e '/CPU Usage/a\${color lightgrey}Temperatures:' -e '/CPU Usage/a\ CPU:$color ${hwmon 0 temp 1}°C' </etc/conky/conky.conf >/home/$var_username/.conkyrc
    chown $var_username:users /home/$var_username/.conkyrc
    # Install clickpad support
    yaourt -S xf86-input-synaptics-clickpad
    # Add french keyboard to X
    sed '/MatchIsKeyboard/a\\tOption "XkbLayout" "fr"' </etc/X11/xorg.conf.d/10-evdev.conf >/etc/X11/xorg.conf.d/10-evdev.conf.new
    mv -f /etc/X11/xorg.conf.d/10-evdev.conf.new /etc/X11/xorg.conf.d/10-evdev.conf
    # Add new daemons, remove old ones, disable hwclock and remove netfs since I don't use it. add it if you need it
    sed '/DAEMONS=/c\DAEMONS=(!hwclock dbus syslog-ng networkmanager laptop-mode acpid @alsa @cupsd @cpufrequtils ntpd crond)' </etc/rc.conf >/etc/rc.conf.new
    mv -f /etc/rc.conf.new /etc/rc.conf
    # Slim login manager ; change theme
    mv /usr/share/slim/themes/archlinux-darch-grey /tmp/
    mv /usr/share/slim/themes/default /tmp/
    rm -r /usr/share/slim/themes/*
    mv /tmp/archlinux-darch-grey /usr/share/slim/themes
    mv /tmp/default /usr/share/slim/themes
    sed '/^current_theme/c\current_theme archlinux-darch-grey' </etc/slim.conf >/etc/slim.conf
    # XFCE login, and thunar launched as a daemon (note that the part with 'if [ -d /etc/X11/xinit/xinitrc.d ]" is not present, to avoid mounting problems when logged as regular user)
    cat > /home/$var_username/.xinitrc << EOF
    #!/bin/sh
    # ~/.xinitrc
    # Executed by startx (run your window manager from here)
    exec ck-launch-session startxfce4
    thunar --daemon &
    EOF
    chown $var_username:users /home/$var_username/.xinitrc
    # Boot to runlevel 5 now, and run slim then
    sed -e 's/id:3/#id:3/' -e 's/#id:5/id:5/' -e 's|x:5:respawn:/usr/bin/xdm|#x:5:respawn:/usr/bin/xdm|' -e 's|#x:5:respawn:/usr/bin/slim|x:5:respawn:/usr/bin/slim|' </etc/inittab >/etc/inittab.new
    mv -f /etc/inittab.new /etc/inittab
    # Add colored prompt to user and root
    sed '/^PS1/c\' </etc/skel/.bashrc >/root/.bashrc
    cat >> /root/.bashrc << EOF
    PS1='\[\e[0;32m\]\u@\h\[\e[m\] \[\e[0;35m\]\w\[\e[m\] \[\e[m\] \[\e[0;32m\]\t -\[\e[m\] \[\e[1;31m\]\$ \[\e[m\] '
    EOF
    cp /root/.bashrc /home/$var_username/.bashrc
    chown $var_username:users /home/$var_username/.bashrc
    # How does one do that automatically ?
    # Manually add user to sudoers
    EDITOR="vim" visudo
    # Reboot, because it's quick and I'm too lazy to learn how to start all the daemons and others.
    reboot
    The important part of the script to solve the problem is :
    cat > /home/$var_username/.xinitrc << EOF
    #!/bin/sh
    # ~/.xinitrc
    # Executed by startx (run your window manager from here)
    exec ck-launch-session startxfce4
    thunar --daemon &
    EOF
    chown $var_username:users /home/$var_username/.xinitrc

  • Xfce takes long to start

    Hi!
    Since the day before yesterday, xfce is taking longer than normal to start. It is taking 15-20 seconds to boot to the desktop after the password is input on SLiM. At first I thought it was a matter of slim, since I switched to it recently from lightdm. But switching back to lightdm renders no improvement, So I doubt it is related to that.
    A week ago it took only a couple of seconds from the password to the full xfce desktop.
    I don't know which log files to look at, or where the problem may lie, so any help is appreciated.
    Here is the output of dmesg:
    ~❱ dmesg ✔
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.16.3-1-ARCH (nobody@var-lib-archbuild-testing-i686-tobias) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Sep 17 22:00:02 CEST 2014
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009bbff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009bc00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007fca7fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000007fca8000-0x000000007fccffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fcd0000-0x000000007fce0fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fce1000-0x000000007fce1fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fce2000-0x000000007fd09fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fd0a000-0x000000007fd0afff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fd0b000-0x000000007fd0bfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fd0c000-0x000000007fd16fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000007fd17000-0x000000007fd1cfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fd1d000-0x000000007fd38fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fd39000-0x000000007fdfffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffbfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
    [ 0.000000] Malformed early option 'acpi'
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] SMBIOS 2.4 present.
    [ 0.000000] DMI: Sony Corporation VGN-NS12M_W/VAIO, BIOS R0190Y3 07/09/2008
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] e820: last_pfn = 0x7fe00 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-D3FFF write-protect
    [ 0.000000] D4000-E7FFF write-through
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 07FE00000 mask FFFE00000 uncachable
    [ 0.000000] 2 disabled
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000fd690-0x000fd69f] mapped at [c00fd690]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
    [ 0.000000] Base memory trampoline at [c0097000] 97000 size 16384
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x37000000-0x373fffff]
    [ 0.000000] [mem 0x37000000-0x373fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x30000000-0x36ffffff]
    [ 0.000000] [mem 0x30000000-0x36ffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x2fffffff]
    [ 0.000000] [mem 0x00100000-0x003fffff] page 4k
    [ 0.000000] [mem 0x00400000-0x2fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x37400000-0x377fdfff]
    [ 0.000000] [mem 0x37400000-0x377fdfff] page 4k
    [ 0.000000] BRK [0x01798000, 0x01798fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x37900000-0x37c77fff]
    [ 0.000000] Allocated new RAMDISK: [mem 0x37486000-0x377fdddb]
    [ 0.000000] Move RAMDISK from [mem 0x37900000-0x37c77ddb] to [mem 0x37486000-0x377fdddb]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x000F03B0 000024 (v02 Sony )
    [ 0.000000] ACPI: XSDT 0x7FD15F10 00005C (v01 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI: FACP 0x7FD0AA90 0000F4 (v04 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI BIOS Warning (bug): 32/64X FACS address mismatch in FADT: 0x7FD1CE40/0x000000007FD1CD40, using 32-bit address (20140424/tbfadt-283)
    [ 0.000000] ACPI: DSDT 0x7FD0C010 007AFE (v01 Sony VAIO 20080709 INTL 20051117)
    [ 0.000000] ACPI: FACS 0x7FD1CE40 000040
    [ 0.000000] ACPI: APIC 0x7FD14F10 00006C (v02 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI: MCFG 0x7FD1BC90 00003C (v01 Sony VAIO 20080709 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x7FD1BC10 000038 (v01 Sony VAIO 20080709 MSFT 00010013)
    [ 0.000000] ACPI: SLIC 0x7FD17C10 000176 (v01 Sony VAIO 20080709 Sony 01000000)
    [ 0.000000] ACPI: SSDT 0x7FCE1590 000505 (v01 Sony VAIO 20080709 INTL 20051117)
    [ 0.000000] ACPI: SSDT 0x7FCCCC10 0002E4 (v01 Sony VAIO 20080709 INTL 20051117)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 1158MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] BRK [0x01799000, 0x01799fff] PGTABLE
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] Normal [mem 0x01000000-0x377fdfff]
    [ 0.000000] HighMem [mem 0x377fe000-0x7fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009afff]
    [ 0.000000] node 0: [mem 0x00100000-0x7fca7fff]
    [ 0.000000] node 0: [mem 0x7fd39000-0x7fdfffff]
    [ 0.000000] On node 0 totalpages: 523529
    [ 0.000000] free_area_init_node: node 0, pgdat c161c180, node_mem_map f6486020
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3994 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 223230 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 2317 pages used for memmap
    [ 0.000000] HighMem zone: 296305 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009b000-0x0009bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009c000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] e820: [mem 0x7fe00000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 14 pages/cpu @f6442000 s33344 r0 d24000 u57344
    [ 0.000000] pcpu-alloc: s33344 r0 d24000 u57344 alloc=14*4096
    [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 521753
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=1a4fcdfd-1e9f-47e4-97f5-1ebf0a0a629e rw acpi=nonvs quiet
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 4190200 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:0007fe00)
    [ 0.000000] Initializing Movable for node 0 (00000000:00000000)
    [ 0.000000] Memory: 2061160K/2094116K available (4513K kernel code, 483K rwdata, 1328K rodata, 568K init, 824K bss, 32956K reserved, 1185220K highmem)
    [ 0.000000] virtual kernel memory layout:
    fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc1630000 - 0xc16be000 ( 568 kB)
    .data : 0xc146887a - 0xc162ec80 (1817 kB)
    .text : 0xc1000000 - 0xc146887a (4514 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [ 0.000000] NR_IRQS:2304 nr_irqs:712 16
    [ 0.000000] CPU 0 irqstacks, hard=f5808000 soft=f580a000
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 1994.620 MHz processor
    [ 0.003346] Calibrating delay loop (skipped), value calculated using timer frequency.. 3990.45 BogoMIPS (lpj=6648733)
    [ 0.003349] pid_max: default: 32768 minimum: 301
    [ 0.003357] ACPI: Core revision 20140424
    [ 0.012971] ACPI: All ACPI Tables successfully acquired
    [ 0.013373] Security Framework initialized
    [ 0.016688] Yama: becoming mindful.
    [ 0.016705] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.016708] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.017017] Initializing cgroup subsys memory
    [ 0.017044] Initializing cgroup subsys devices
    [ 0.017054] Initializing cgroup subsys freezer
    [ 0.017059] Initializing cgroup subsys net_cls
    [ 0.017066] Initializing cgroup subsys blkio
    [ 0.017095] CPU: Physical Processor ID: 0
    [ 0.017097] CPU: Processor Core ID: 0
    [ 0.017103] mce: CPU supports 6 MCE banks
    [ 0.017111] CPU0: Thermal monitoring enabled (TM2)
    [ 0.017121] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
    tlb_flushall_shift: -1
    [ 0.017238] Freeing SMP alternatives memory: 16K (c16be000 - c16c2000)
    [ 0.017990] ftrace: allocating 19359 entries in 38 pages
    [ 0.023444] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.023818] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    [ 0.058393] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU T5800 @ 2.00GHz (fam: 06, model: 0f, stepping: 0d)
    [ 0.059999] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.059999] perf_event_intel: PEBS disabled due to CPU errata
    [ 0.059999] ... version: 2
    [ 0.059999] ... bit width: 40
    [ 0.059999] ... generic registers: 2
    [ 0.059999] ... value mask: 000000ffffffffff
    [ 0.059999] ... max period: 000000007fffffff
    [ 0.059999] ... fixed-purpose events: 3
    [ 0.059999] ... event mask: 0000000700000003
    [ 0.076780] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.083412] CPU 1 irqstacks, hard=f5962000 soft=f5964000
    [ 0.083414] x86: Booting SMP configuration:
    [ 0.083417] .... node #0, CPUs: #1
    [ 0.006666] Initializing CPU#1
    [ 0.096575] x86: Booted up 1 node, 2 CPUs
    [ 0.096580] smpboot: Total of 2 processors activated (7981.91 BogoMIPS)
    [ 0.096780] devtmpfs: initialized
    [ 0.097002] PM: Registering ACPI NVS region [mem 0x7fca8000-0x7fccffff] (163840 bytes)
    [ 0.097008] PM: Registering ACPI NVS region [mem 0x7fce1000-0x7fce1fff] (4096 bytes)
    [ 0.097011] PM: Registering ACPI NVS region [mem 0x7fd0a000-0x7fd0afff] (4096 bytes)
    [ 0.097013] PM: Registering ACPI NVS region [mem 0x7fd17000-0x7fd1cfff] (24576 bytes)
    [ 0.098411] pinctrl core: initialized pinctrl subsystem
    [ 0.098470] RTC time: 10:19:33, date: 10/07/14
    [ 0.098470] NET: Registered protocol family 16
    [ 0.098470] cpuidle: using governor ladder
    [ 0.098470] cpuidle: using governor menu
    [ 0.098470] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.098470] ACPI: bus type PCI registered
    [ 0.098470] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.098470] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.098470] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.098470] PCI: Using MMCONFIG for extended config space
    [ 0.098470] PCI: Using configuration type 1 for base access
    [ 0.098470] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.098470] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.098470] mtrr: corrected configuration.
    [ 0.113396] ACPI: Added _OSI(Module Device)
    [ 0.113399] ACPI: Added _OSI(Processor Device)
    [ 0.113402] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.113404] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.117050] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.126692] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.139873] ACPI: Dynamic OEM Table Load:
    [ 0.139882] ACPI: SSDT 0xF5A38800 000265 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.140517] ACPI: Dynamic OEM Table Load:
    [ 0.140526] ACPI: SSDT 0xF5873000 0007A2 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.160370] ACPI: Dynamic OEM Table Load:
    [ 0.160377] ACPI: SSDT 0xF5861300 0000FD (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.170086] ACPI: Dynamic OEM Table Load:
    [ 0.170093] ACPI: SSDT 0xF583CDE0 000047 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.386736] ACPI: Interpreter enabled
    [ 0.386754] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
    [ 0.386760] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
    [ 0.386779] ACPI: (supports S0 S3 S4 S5)
    [ 0.386781] ACPI: Using IOAPIC for interrupt routing
    [ 0.386819] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.440953] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.440960] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.441013] \_SB_.PCI0:_OSC invalid UUID
    [ 0.441015] _OSC request data:1 1f 0
    [ 0.441020] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
    [ 0.441925] PCI host bridge to bus 0000:00
    [ 0.441930] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.441933] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.441935] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.441938] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.441941] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.441943] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.441945] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.441948] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.441950] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.441953] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.441955] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
    [ 0.441969] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    [ 0.441996] DMAR: Forcing write-buffer flush capability
    [ 0.441998] DMAR: Disabling IOMMU for graphics on this chipset
    [ 0.442164] pci 0000:00:01.0: [8086:2a41] type 01 class 0x060400
    [ 0.442223] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.442433] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1a.0: reg 0x20: [io 0xe0e0-0xe0ff]
    [ 0.442498] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1a.1: reg 0x20: [io 0xe0c0-0xe0df]
    [ 0.442498] pci 0000:00:1a.1: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1a.2: reg 0x20: [io 0xe0a0-0xe0bf]
    [ 0.442498] pci 0000:00:1a.2: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    [ 0.442498] pci 0000:00:1a.7: reg 0x10: [mem 0xd3e04c00-0xd3e04fff]
    [ 0.442498] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1a.7: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    [ 0.442498] pci 0000:00:1b.0: reg 0x10: [mem 0xd3e00000-0xd3e03fff 64bit]
    [ 0.442498] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    [ 0.442498] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
    [ 0.442498] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.1: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1c.2: [8086:2944] type 01 class 0x060400
    [ 0.442498] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.442498] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.442498] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    [ 0.442498] pci 0000:00:1d.0: reg 0x20: [io 0xe080-0xe09f]
    [ 0.442614] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.442685] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    [ 0.442749] pci 0000:00:1d.1: reg 0x20: [io 0xe060-0xe07f]
    [ 0.442923] pci 0000:00:1d.1: System wakeup disabled by ACPI
    [ 0.442994] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    [ 0.443059] pci 0000:00:1d.2: reg 0x20: [io 0xe040-0xe05f]
    [ 0.443233] pci 0000:00:1d.2: System wakeup disabled by ACPI
    [ 0.443316] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    [ 0.443352] pci 0000:00:1d.7: reg 0x10: [mem 0xd3e04800-0xd3e04bff]
    [ 0.443477] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.443591] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.443662] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.443898] pci 0000:00:1f.0: [8086:2919] type 00 class 0x060100
    [ 0.444221] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
    [ 0.444253] pci 0000:00:1f.2: reg 0x10: [io 0xe130-0xe137]
    [ 0.444266] pci 0000:00:1f.2: reg 0x14: [io 0xe120-0xe123]
    [ 0.444279] pci 0000:00:1f.2: reg 0x18: [io 0xe110-0xe117]
    [ 0.444292] pci 0000:00:1f.2: reg 0x1c: [io 0xe100-0xe103]
    [ 0.444305] pci 0000:00:1f.2: reg 0x20: [io 0xe020-0xe03f]
    [ 0.444319] pci 0000:00:1f.2: reg 0x24: [mem 0xd3e04000-0xd3e047ff]
    [ 0.444398] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.444574] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    [ 0.444599] pci 0000:00:1f.3: reg 0x10: [mem 0xd3e05000-0xd3e050ff 64bit]
    [ 0.444633] pci 0000:00:1f.3: reg 0x20: [io 0xe000-0xe01f]
    [ 0.444902] pci 0000:01:00.0: [1002:95c2] type 00 class 0x030000
    [ 0.444923] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff pref]
    [ 0.444936] pci 0000:01:00.0: reg 0x14: [io 0xd000-0xd0ff]
    [ 0.444949] pci 0000:01:00.0: reg 0x18: [mem 0xd0020000-0xd002ffff]
    [ 0.444992] pci 0000:01:00.0: reg 0x30: [mem 0xd0000000-0xd001ffff pref]
    [ 0.445051] pci 0000:01:00.0: supports D1 D2
    [ 0.453349] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.453354] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.453358] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd00fffff]
    [ 0.453656] pci 0000:02:00.0: [11ab:4363] type 00 class 0x020000
    [ 0.453859] pci 0000:02:00.0: reg 0x10: [mem 0xd2920000-0xd2923fff 64bit]
    [ 0.453958] pci 0000:02:00.0: reg 0x18: [io 0xc000-0xc0ff]
    [ 0.454320] pci 0000:02:00.0: reg 0x30: [mem 0xd2900000-0xd291ffff pref]
    [ 0.454922] pci 0000:02:00.0: supports D1 D2
    [ 0.454925] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.455034] pci 0000:02:00.0: System wakeup disabled by ACPI
    [ 0.463412] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.463418] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.463424] pci 0000:00:1c.0: bridge window [mem 0xd2900000-0xd3cfffff]
    [ 0.463555] acpiphp: Slot [1] registered
    [ 0.463563] pci 0000:00:1c.1: PCI bridge to [bus 03-04]
    [ 0.463569] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 0.463575] pci 0000:00:1c.1: bridge window [mem 0xd1500000-0xd28fffff]
    [ 0.463800] pci 0000:05:00.0: [8086:4232] type 00 class 0x028000
    [ 0.463942] pci 0000:05:00.0: reg 0x10: [mem 0xd0100000-0xd0101fff 64bit]
    [ 0.464488] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
    [ 0.464612] pci 0000:05:00.0: System wakeup disabled by ACPI
    [ 0.464780] pci 0000:00:1c.2: PCI bridge to [bus 05]
    [ 0.464786] pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    [ 0.464792] pci 0000:00:1c.2: bridge window [mem 0xd0100000-0xd14fffff]
    [ 0.464875] pci 0000:06:03.0: [1180:0832] type 00 class 0x0c0010
    [ 0.464901] pci 0000:06:03.0: reg 0x10: [mem 0xd3d00000-0xd3d007ff]
    [ 0.465007] pci 0000:06:03.0: PME# supported from D0 D3hot D3cold
    [ 0.465089] pci 0000:06:03.1: [1180:0822] type 00 class 0x080500
    [ 0.465113] pci 0000:06:03.1: reg 0x10: [mem 0xd3d00900-0xd3d009ff]
    [ 0.465220] pci 0000:06:03.1: supports D1 D2
    [ 0.465222] pci 0000:06:03.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.465304] pci 0000:06:03.2: [1180:0592] type 00 class 0x088000
    [ 0.465329] pci 0000:06:03.2: reg 0x10: [mem 0xd3d00800-0xd3d008ff]
    [ 0.465437] pci 0000:06:03.2: supports D1 D2
    [ 0.465439] pci 0000:06:03.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.465571] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
    [ 0.465580] pci 0000:00:1e.0: bridge window [mem 0xd3d00000-0xd3dfffff]
    [ 0.465589] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.465592] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.465595] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.465598] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 0.465600] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.465603] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.465606] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.465608] pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 0.465611] pci 0000:00:1e.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    [ 0.465614] pci 0000:00:1e.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
    [ 0.465695] pci_bus 0000:00: on NUMA node 0
    [ 0.466115] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.466191] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 *4 5 6 7 11 12 14 15)
    [ 0.466265] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.466338] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 11 12 14 15)
    [ 0.466411] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.466486] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.466562] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 7 10 12 14 15)
    [ 0.466633] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.490264] ACPI: Enabled 2 GPEs in block 00 to 3F
    [ 0.490336] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.490408] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.490408] vgaarb: loaded
    [ 0.490408] vgaarb: bridge control possible 0000:01:00.0
    [ 0.490408] PCI: Using ACPI for IRQ routing
    [ 0.502523] PCI: pci_cache_line_size set to 64 bytes
    [ 0.502694] e820: reserve RAM buffer [mem 0x0009bc00-0x0009ffff]
    [ 0.502697] e820: reserve RAM buffer [mem 0x7fca8000-0x7fffffff]
    [ 0.502700] e820: reserve RAM buffer [mem 0x7fe00000-0x7fffffff]
    [ 0.502859] NetLabel: Initializing
    [ 0.502861] NetLabel: domain hash size = 128
    [ 0.502862] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.502879] NetLabel: unlabeled traffic allowed by default
    [ 0.502923] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.502930] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.502936] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.504352] Switched to clocksource hpet
    [ 0.511715] pnp: PnP ACPI init
    [ 0.511744] ACPI: bus type PNP registered
    [ 0.511964] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.511969] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.512056] system 00:01: [io 0x0680-0x069f] has been reserved
    [ 0.512060] system 00:01: [io 0x1000-0x100f] has been reserved
    [ 0.512063] system 00:01: [io 0x0800-0x0803] has been reserved
    [ 0.512066] system 00:01: [io 0x0400-0x047f] could not be reserved
    [ 0.512069] system 00:01: [io 0x0500-0x053f] has been reserved
    [ 0.512072] system 00:01: [io 0x164e-0x164f] has been reserved
    [ 0.512076] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.512132] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.512179] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.512228] pnp 00:04: Plug and Play ACPI device, IDs SNY9008 PNP0f13 (active)
    [ 0.512505] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.512509] system 00:05: [mem 0xfed14000-0xfed17fff] has been reserved
    [ 0.512512] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.512515] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.512519] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.512522] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.512525] system 00:05: [mem 0xfeb00000-0xfeb03fff] has been reserved
    [ 0.512528] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.512532] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.530948] pnp: PnP ACPI: found 6 devices
    [ 0.530951] ACPI: bus type PNP unregistered
    [ 0.568799] pci 0000:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    [ 0.568813] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.568826] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03-04] add_size 200000
    [ 0.568839] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 05] add_size 200000
    [ 0.568856] pci 0000:00:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568860] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568863] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568866] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.568876] pci 0000:00:01.0: BAR 15: assigned [mem 0x80000000-0x801fffff 64bit pref]
    [ 0.568883] pci 0000:00:1c.0: BAR 15: assigned [mem 0x80200000-0x803fffff 64bit pref]
    [ 0.568888] pci 0000:00:1c.1: BAR 15: assigned [mem 0x80400000-0x805fffff 64bit pref]
    [ 0.568894] pci 0000:00:1c.2: BAR 15: assigned [mem 0x80600000-0x807fffff 64bit pref]
    [ 0.568897] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.568901] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.568906] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd00fffff]
    [ 0.568910] pci 0000:00:01.0: bridge window [mem 0x80000000-0x801fffff 64bit pref]
    [ 0.568916] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.568920] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.568927] pci 0000:00:1c.0: bridge window [mem 0xd2900000-0xd3cfffff]
    [ 0.568932] pci 0000:00:1c.0: bridge window [mem 0x80200000-0x803fffff 64bit pref]
    [ 0.568941] pci 0000:00:1c.1: PCI bridge to [bus 03-04]
    [ 0.568945] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 0.568952] pci 0000:00:1c.1: bridge window [mem 0xd1500000-0xd28fffff]
    [ 0.568958] pci 0000:00:1c.1: bridge window [mem 0x80400000-0x805fffff 64bit pref]
    [ 0.568966] pci 0000:00:1c.2: PCI bridge to [bus 05]
    [ 0.568970] pci 0000:00:1c.2: bridge window [io 0xa000-0xafff]
    [ 0.568977] pci 0000:00:1c.2: bridge window [mem 0xd0100000-0xd14fffff]
    [ 0.568983] pci 0000:00:1c.2: bridge window [mem 0x80600000-0x807fffff 64bit pref]
    [ 0.568991] pci 0000:00:1e.0: PCI bridge to [bus 06]
    [ 0.568998] pci 0000:00:1e.0: bridge window [mem 0xd3d00000-0xd3dfffff]
    [ 0.569010] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.569013] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.569016] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.569018] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.569021] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.569024] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.569026] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.569029] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.569031] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.569034] pci_bus 0000:00: resource 13 [mem 0x80000000-0xfebfffff]
    [ 0.569037] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 0.569040] pci_bus 0000:01: resource 1 [mem 0xc0000000-0xd00fffff]
    [ 0.569043] pci_bus 0000:01: resource 2 [mem 0x80000000-0x801fffff 64bit pref]
    [ 0.569046] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    [ 0.569048] pci_bus 0000:02: resource 1 [mem 0xd2900000-0xd3cfffff]
    [ 0.569051] pci_bus 0000:02: resource 2 [mem 0x80200000-0x803fffff 64bit pref]
    [ 0.569054] pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    [ 0.569056] pci_bus 0000:03: resource 1 [mem 0xd1500000-0xd28fffff]
    [ 0.569059] pci_bus 0000:03: resource 2 [mem 0x80400000-0x805fffff 64bit pref]
    [ 0.569062] pci_bus 0000:05: resource 0 [io 0xa000-0xafff]
    [ 0.569064] pci_bus 0000:05: resource 1 [mem 0xd0100000-0xd14fffff]
    [ 0.569067] pci_bus 0000:05: resource 2 [mem 0x80600000-0x807fffff 64bit pref]
    [ 0.569070] pci_bus 0000:06: resource 1 [mem 0xd3d00000-0xd3dfffff]
    [ 0.569072] pci_bus 0000:06: resource 4 [io 0x0000-0x0cf7]
    [ 0.569075] pci_bus 0000:06: resource 5 [io 0x0d00-0xffff]
    [ 0.569077] pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.569080] pci_bus 0000:06: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.569082] pci_bus 0000:06: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.569085] pci_bus 0000:06: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.569087] pci_bus 0000:06: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.569090] pci_bus 0000:06: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.569093] pci_bus 0000:06: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.569095] pci_bus 0000:06: resource 13 [mem 0x80000000-0xfebfffff]
    [ 0.569130] NET: Registered protocol family 2
    [ 0.569375] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [ 0.569394] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.569434] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.569472] TCP: reno registered
    [ 0.569475] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.569485] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.569542] NET: Registered protocol family 1
    [ 0.571079] pci 0000:01:00.0: Boot video device
    [ 0.571140] PCI: CLS 64 bytes, default 64
    [ 0.571197] Unpacking initramfs...
    [ 0.659599] Freeing initrd memory: 3552K (f7486000 - f77fe000)
    [ 0.659867] apm: BIOS not found.
    [ 0.659927] Scanning for low memory corruption every 60 seconds
    [ 0.660498] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [ 0.660923] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.663431] zbud: loaded
    [ 0.663572] VFS: Disk quotas dquot_6.5.2
    [ 0.663631] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.663843] msgmni has been set to 1717
    [ 0.663926] Key type big_key registered
    [ 0.664103] bounce: pool size: 64 pages
    [ 0.664153] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.664217] io scheduler noop registered
    [ 0.664221] io scheduler deadline registered
    [ 0.664299] io scheduler cfq registered (default)
    [ 0.664550] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.664713] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    [ 0.664908] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X
    [ 0.665104] pcieport 0000:00:1c.2: irq 43 for MSI/MSI-X
    [ 0.665248] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.665273] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.665324] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.665326] vesafb: scrolling: redraw
    [ 0.665329] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 0.665346] vesafb: framebuffer at 0xc0000000, mapped to 0xf8080000, using 3072k, total 3072k
    [ 0.713194] Console: switching to colour frame buffer device 128x48
    [ 0.760857] fb0: VESA VGA frame buffer device
    [ 0.760884] intel_idle: does not run on family 6 model 15
    [ 0.760924] GHES: HEST is not enabled!
    [ 0.760944] isapnp: Scanning for PnP cards...
    [ 1.074009] isapnp: No Plug & Play device found
    [ 1.074072] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.074824] rtc_cmos 00:02: RTC can wake from S4
    [ 1.075009] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 1.075046] rtc_cmos 00:02: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    [ 1.075093] ledtrig-cpu: registered to indicate activity on CPUs
    [ 1.075248] TCP: cubic registered
    [ 1.075444] NET: Registered protocol family 10
    [ 1.075715] NET: Registered protocol family 17
    [ 1.075928] Using IPI No-Shortcut mode
    [ 1.076096] registered taskstats version 1
    [ 1.076841] Magic number: 2:879:324
    [ 1.076851] tty tty49: hash matches
    [ 1.076876] acpi PNP0B00:00: hash matches
    [ 1.076924] rtc_cmos 00:02: setting system clock to 2014-10-07 10:19:34 UTC (1412677174)
    [ 1.077033] PM: Hibernation image not present or could not be loaded.
    [ 1.077295] Freeing unused kernel memory: 568K (c1630000 - c16be000)
    [ 1.077316] Write protecting the kernel text: 4516k
    [ 1.077349] Write protecting the kernel read-only data: 1332k
    [ 1.085296] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 1.086959] systemd-udevd[47]: starting version 216
    [ 1.108059] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.114280] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.114515] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.115994] ACPI: bus type USB registered
    [ 1.116032] usbcore: registered new interface driver usbfs
    [ 1.116049] usbcore: registered new interface driver hub
    [ 1.116110] usbcore: registered new device driver usb
    [ 1.116598] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.117084] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.117254] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.117262] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 1.117272] uhci_hcd 0000:00:1a.0: detected 2 ports
    [ 1.117317] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e0e0
    [ 1.117584] hub 1-0:1.0: USB hub found
    [ 1.117594] hub 1-0:1.0: 2 ports detected
    [ 1.117865] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 1.117874] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    [ 1.117883] uhci_hcd 0000:00:1a.1: detected 2 ports
    [ 1.117886] ehci-pci: EHCI PCI platform driver
    [ 1.117918] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e0c0
    [ 1.118335] hub 2-0:1.0: USB hub found
    [ 1.118349] hub 2-0:1.0: 2 ports detected
    [ 1.118777] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 1.118785] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
    [ 1.118796] uhci_hcd 0000:00:1a.2: detected 2 ports
    [ 1.118833] uhci_hcd 0000:00:1a.2: irq 19, io base 0x0000e0a0
    [ 1.123486] hub 3-0:1.0: USB hub found
    [ 1.123497] hub 3-0:1.0: 2 ports detected
    [ 1.123747] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.123755] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 1.123763] uhci_hcd 0000:00:1d.0: detected 2 ports
    [ 1.123799] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e080
    [ 1.124033] hub 4-0:1.0: USB hub found
    [ 1.124044] hub 4-0:1.0: 2 ports detected
    [ 1.125585] ehci-pci 0000:00:1a.7: EHCI Host Controller
    [ 1.125596] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 5
    [ 1.125614] ehci-pci 0000:00:1a.7: debug port 1
    [ 1.128364] sdhci: Secure Digital Host Controller Interface driver
    [ 1.128368] sdhci: Copyright(c) Pierre Ossman
    [ 1.128740] sdhci-pci 0000:06:03.1: SDHCI controller found [1180:0822] (rev 22)
    [ 1.128843] sdhci-pci 0000:06:03.1: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 1.128849] mmc0: no vqmmc regulator found
    [ 1.128851] mmc0: no vmmc regulator found
    [ 1.129538] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.129548] ehci-pci 0000:00:1a.7: irq 19, io mem 0xd3e04c00
    [ 1.130351] SCSI subsystem initialized
    [ 1.132291] mmc0: SDHCI controller on PCI [0000:06:03.1] using DMA
    [ 1.137889] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.138952] hub 5-0:1.0: USB hub found
    [ 1.139482] hub 5-0:1.0: 6 ports detected
    [ 1.140074] libata version 3.00 loaded.
    [ 1.163434] hub 1-0:1.0: USB hub found
    [ 1.163447] hub 1-0:1.0: 2 ports detected
    [ 1.174049] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.186753] hub 2-0:1.0: USB hub found
    [ 1.186763] hub 2-0:1.0: 2 ports detected
    [ 1.190058] firewire_ohci 0000:06:03.0: added OHCI v1.0 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
    [ 1.210100] hub 3-0:1.0: USB hub found
    [ 1.210114] hub 3-0:1.0: 2 ports detected
    [ 1.210519] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 1.210528] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 6
    [ 1.210546] ehci-pci 0000:00:1d.7: debug port 1
    [ 1.214465] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.214474] ehci-pci 0000:00:1d.7: irq 23, io mem 0xd3e04800
    [ 1.223360] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.223643] hub 6-0:1.0: USB hub found
    [ 1.223653] hub 6-0:1.0: 6 ports detected
    [ 1.246749] hub 4-0:1.0: USB hub found
    [ 1.246759] hub 4-0:1.0: 2 ports detected
    [ 1.246964] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.246972] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 1.246980] uhci_hcd 0000:00:1d.1: detected 2 ports
    [ 1.247004] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e060
    [ 1.247338] hub 7-0:1.0: USB hub found
    [ 1.247349] hub 7-0:1.0: 2 ports detected
    [ 1.247602] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.247609] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 1.247620] uhci_hcd 0000:00:1d.2: detected 2 ports
    [ 1.247658] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e040
    [ 1.247886] hub 8-0:1.0: USB hub found
    [ 1.247895] hub 8-0:1.0: 2 ports detected
    [ 1.248064] ahci 0000:00:1f.2: version 3.0
    [ 1.248219] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
    [ 1.248296] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    [ 1.248301] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems
    [ 1.254099] scsi0 : ahci
    [ 1.254260] scsi1 : ahci
    [ 1.254394] scsi2 : ahci
    [ 1.254531] scsi3 : ahci
    [ 1.254620] ata1: SATA max UDMA/133 abar m2048@0xd3e04000 port 0xd3e04100 irq 44
    [ 1.254624] ata2: SATA max UDMA/133 abar m2048@0xd3e04000 port 0xd3e04180 irq 44
    [ 1.254626] ata3: DUMMY
    [ 1.254628] ata4: DUMMY
    [ 1.446701] usb 5-2: new high-speed USB device number 2 using ehci-pci
    [ 1.573373] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.573417] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.574295] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.586094] ata2.00: ATAPI: Optiarc DVD RW AD-7560S, SS02, max UDMA/100
    [ 1.599810] ata2.00: configured for UDMA/100
    [ 1.624700] ata1.00: ATA-8: ST9500325AS, 0001SDM1, max UDMA/133
    [ 1.624703] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.626521] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.626525] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.626792] ata1.00: configured for UDMA/133
    [ 1.626924] scsi 0:0:0:0: Direct-Access ATA ST9500325AS SDM1 PQ: 0 ANSI: 5
    [ 1.628271] scsi 1:0:0:0: CD-ROM Optiarc DVD RW AD-7560S SS02 PQ: 0 ANSI: 5
    [ 1.642555] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.642657] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.642661] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.642702] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.653151] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.653155] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.653396] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.660023] tsc: Refined TSC clocksource calibration: 1994.515 MHz
    [ 1.690129] firewire_core 0000:06:03.0: created device fw0: GUID 0800460302c7fa38, S400
    [ 1.736464] sda: sda1 sda2 sda3 < sda5 sda6 sda7 >
    [ 1.737116] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.853371] usb 4-2: new low-speed USB device number 2 using uhci_hcd
    [ 2.013017] hidraw: raw HID events driver (C) Jiri Kosina
    [ 2.026218] usbcore: registered new interface driver usbhid
    [ 2.026221] usbhid: USB HID core driver
    [ 2.027252] input: OM as /devices/pci0000:00/0000:00:1d.0/usb4/4-2/4-2:1.0/0003:04F3:0232.0001/input/input2
    [ 2.027320] hid-generic 0003:04F3:0232.0001: input,hidraw0: USB HID v1.11 Mouse [OM] on usb-0000:00:1d.0-2/input0
    [ 2.660076] Switched to clocksource tsc
    [ 3.022076] random: nonblocking pool is initialized
    [ 3.080690] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.708375] EXT4-fs (sda7): re-mounted. Opts: data=ordered
    [ 6.402158] systemd-udevd[145]: starting version 216
    [ 7.329180] Monitor-Mwait will be used to enter C-1 state
    [ 7.329190] Monitor-Mwait will be used to enter C-2 state
    [ 7.329196] Monitor-Mwait will be used to enter C-3 state
    [ 7.329201] tsc: Marking TSC unstable due to TSC halts in idle
    [ 7.329221] ACPI: acpi_idle registered with cpuidle
    [ 7.329257] Switched to clocksource hpet
    [ 7.388619] [Firmware Bug]: ACPI(VGA) defines _DOD but not _DOS
    [ 7.388649] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    [ 7.391965] acpi device:19: registered as cooling_device2
    [ 7.392046] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/LNXVIDEO:01/input/input3
    [ 7.447312] ACPI: Battery Slot [BAT0] (battery present)
    [ 7.447434] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
    [ 7.448158] ACPI: Lid Switch [LID0]
    [ 7.448633] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5
    [ 7.448638] ACPI: Power Button [PWRB]
    [ 7.453434] ACPI: AC Adapter [ADP1] (on-line)
    [ 7.499637] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 7.552327] Linux agpgart interface v0.103
    [ 7.579473] thermal LNXTHERM:00: registered as thermal_zone0
    [ 7.579478] ACPI: Thermal Zone [TZ00] (57 C)
    [ 7.580996] ACPI: Invalid active0 threshold
    [ 7.582951] thermal LNXTHERM:01: registered as thermal_zone1
    [ 7.582954] ACPI: Thermal Zone [TZ01] (57 C)
    [ 7.667982] input: Sony Vaio Keys as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input6
    [ 7.668049] input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input7
    [ 7.678388] sony_laptop: brightness ignored, must be controlled by ACPI video driver
    [ 7.678401] sony_laptop: SNC setup done.
    [ 7.782985] input: PC Speaker as /devices/platform/pcspkr/input/input8
    [ 7.787513] ACPI Warning: SystemIO range 0x00000428-0x0000042f conflicts with OpRegion 0x00000400-0x0000047f (\PMIO) (20140424/utaddress-258)
    [ 7.787522] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.787526] ACPI Warning: SystemIO range 0x00000530-0x0000053f conflicts with OpRegion 0x00000500-0x0000053b (\GPIO) (20140424/utaddress-258)
    [ 7.787531] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.787533] ACPI Warning: SystemIO range 0x00000500-0x0000052f conflicts with OpRegion 0x00000500-0x0000053b (\GPIO) (20140424/utaddress-258)
    [ 7.787538] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.787540] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 7.907516] microcode: CPU0 sig=0x6fd, pf=0x80, revision=0xa3
    [ 7.917945] i801_smbus 0000:00:1f.3: enabling device (0001 -> 0003)
    [ 7.918056] ACPI Warning: SystemIO range 0x0000e000-0x0000e01f conflicts with OpRegion 0x00000800-0xffff0803 (\SMI1) (20140424/utaddress-258)
    [ 7.918063] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.960046] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    [ 7.962063] microcode: CPU1 sig=0x6fd, pf=0x80, revision=0xa3
    [ 7.962152] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 7.993425] iTCO_vendor_support: vendor-support=0
    [ 7.997746] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 7.997800] iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
    [ 7.997942] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 7.997991] [drm] Initialized drm 1.1.0 20060810
    [ 8.047610] r592: driver successfully loaded
    [ 8.084641] [drm] radeon kernel modesetting enabled.
    [ 8.084720] checking generic (c0000000 300000) vs hw (c0000000 10000000)
    [ 8.084723] fb: switching to radeondrmfb from VESA VGA
    [ 8.084747] Console: switching to colour dummy device 80x25
    [ 8.085113] [drm] initializing kernel modesetting (RV620 0x1002:0x95C2 0x104D:0x9045).
    [ 8.085131] [drm] register mmio base: 0xD0020000
    [ 8.085133] [drm] register mmio size: 65536
    [ 8.085255] ATOM BIOS: SonyM790
    [ 8.085290] radeon 0000:01:00.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (256M used)
    [ 8.085294] radeon 0000:01:00.0: GTT: 512M 0x0000000010000000 - 0x000000002FFFFFFF
    [ 8.085296] [drm] Detected VRAM RAM=256M, BAR=256M
    [ 8.085298] [drm] RAM width 64bits DDR
    [ 8.085369] [TTM] Zone kernel: Available graphics memory: 440038 kiB
    [ 8.085371] [TTM] Zone highmem: Available graphics memory: 1032648 kiB
    [ 8.085373] [TTM] Initializing pool allocator
    [ 8.085380] [TTM] Initializing DMA pool allocator
    [ 8.085408] [drm] radeon: 256M of VRAM memory ready
    [ 8.085410] [drm] radeon: 512M of GTT memory ready.
    [ 8.085423] [drm] Loading RV620 Microcode
    [ 8.095176] cfg80211: Calling CRDA to update world regulatory domain
    [ 8.095711] sound hdaudioC0D0: ALC262: SKU not ready 0x411111f0
    [ 8.095917] sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    [ 8.095921] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 8.095924] sound hdaudioC0D0: hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
    [ 8.095927] sound hdaudioC0D0: mono: mono_out=0x0
    [ 8.095929] sound hdaudioC0D0: inputs:
    [ 8.095932] sound hdaudioC0D0: Mic=0x18
    [ 8.095935] sound hdaudioC0D0: Internal Mic=0x12
    [ 8.100437] sound hdaudioC0D1: autoconfig: line_outs=0 (0x0/0x0/0x0/0x0/0x0) type:line
    [ 8.100442] sound hdaudioC0D1: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 8.100446] sound hdaudioC0D1: hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 8.100448] sound hdaudioC0D1: mono: mono_out=0x0
    [ 8.100451] sound hdaudioC0D1: inputs:
    [ 8.106995] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input10
    [ 8.107610] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 8.107720] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 8.127655] sky2: driver version 1.30
    [ 8.127955] sky2 0000:02:00.0: Yukon-2 EC Ultra chip revision 3
    [ 8.128246] sky2 0000:02:00.0: irq 46 for MSI/MSI-X
    [ 8.128956] sky2 0000:02:00.0 eth0: addr 00:1d:ba:22:41:93
    [ 8.138358] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 8.138362] Copyright(c) 2003- 2014 Intel Corporation
    [ 8.138697] iwlwifi 0000:05:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 8.138854] iwlwifi 0000:05:00.0: irq 47 for MSI/MSI-X
    [ 8.166978] mousedev: PS/2 mouse device common for all mice
    [ 8.359543] iwlwifi 0000:05:00.0: loaded firmware version 8.83.5.1 build 33692 op_mode iwldvm
    [ 8.450028] [drm] radeon: power management initialized
    [ 8.450038] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 8.459438] systemd-udevd[151]: renamed network interface eth0 to enp2s0
    [ 8.480984] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 8.481031] radeon 0000:01:00.0: WB enabled
    [ 8.481036] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000010000c00 and cpu addr 0xff862c00
    [ 8.481039] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 8.481041] [drm] Driver supports precise vblank timestamp query.
    [ 8.481068] radeon 0000:01:00.0: irq 48 for MSI/MSI-X
    [ 8.481085] radeon 0000:01:00.0: radeon: using MSI.
    [ 8.481117] [drm] radeon: irq initialized.
    [ 8.512790] [drm] ring test on 0 succeeded in 0 usecs
    [ 8.512924] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 8.513633] Raw EDID:
    [ 8.513639] 36 7f 40 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513644] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513648] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513652] ff ff ff ff 3f 00 00 00 ff ff ff ff 3f 00 00 00
    [ 8.513656] ff ff ff ff 3f 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513660] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513664] 40 43 5d c1 80 43 5d c1 c0 ae 5d c1 ec 50 05 f5
    [ 8.513668] 10 2f 07 c1 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8.513773] [drm] radeon atom DIG backlight initialized
    [ 8.513775] [drm] Radeon Display Connectors
    [ 8.513777] [drm] Connector 0:
    [ 8.513779] [drm] VGA-1
    [ 8.513781] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
    [ 8.513783] [drm] Encoders:
    [ 8.513785] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [ 8.513786] [drm] Connector 1:
    [ 8.513788] [drm] LVDS-1
    [ 8.513789] [drm] Encoders:
    [ 8.513791] [drm] LCD1: INTERNAL_KLDSCP_LVTMA
    [ 8.612347] iwlwifi 0000:05:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 8.612352] iwlwifi 0000:05:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 8.612354] iwlwifi 0000:05:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 8.612358] iwlwifi 0000:05:00.0: Detected Intel(R) WiFi Link 5100 AGN, REV=0x54
    [ 8.612403] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.0, id: 0x1c0b1, caps: 0xd04711/0xa00000/0x20000, board id: 3655, fw id: 474059
    [ 8.612460] iwlwifi 0000:05:00.0: L1 Enabled; Disabling L0S
    [ 8.663147] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9
    [ 8.680967] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 8.736839] systemd-udevd[152]: renamed network interface wlan0 to wlp5s0
    [ 8.828178] media: Linux media interface: v0.10
    [ 8.842407] Linux video capture interface: v2.00
    [ 8.965340] uvcvideo: Found UVC 1.00 device <unnamed> (05ca:18b3)
    [ 8.966809] input: UVC Camera (05ca:18b3) as /devices/pci0000:00/0000:00:1a.7/usb5/5-2/5-2:1.0/input/input13
    [ 8.966907] usbcore: registered new interface driver uvcvideo
    [ 8.966910] USB Video Class driver (1.1.1)
    [ 9.438912] [drm] fb mappable at 0xC0141000
    [ 9.438915] [drm] vram apper at 0xC0000000
    [ 9.438917] [drm] size 4096000
    [ 9.438919] [drm] fb depth is 24
    [ 9.438921] [drm] pitch is 5120
    [ 9.439044] fbcon: radeondrmfb (fb0) is primary device
    [ 9.493414] Console: switching to colour frame buffer device 160x50
    [ 9.498518] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
    [ 9.498521] radeon 0000:01:00.0: registered panic notifier
    [ 9.523878] [drm] Initialized radeon 2.39.0 20080528 for 0000:01:00.0 on minor 0
    [ 9.596873] Adding 6291452k swap on /dev/sda2. Priority:-1 extents:1 across:6291452k FS
    [ 10.682619] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    [ 10.777545] systemd-journald[126]: Received request to flush runtime journal from PID 1
    [ 15.392287] sky2 0000:02:00.0 enp2s0: enabling interface
    [ 15.392779] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
    [ 15.398848] iwlwifi 0000:05:00.0: L1 Enabled; Disabling L0S
    [ 15.403170] iwlwifi 0000:05:00.0: Radio type=0x1-0x2-0x0
    [ 15.498641] iwlwifi 0000:05:00.0: L1 Enabled; Disabling L0S
    [ 15.501625] iwlwifi 0000:05:00.0: Radio type=0x1-0x2-0x0
    [ 15.528195] IPv6: ADDRCONF(NETDEV_UP): wlp5s0: link is not ready
    [ 16.614242] cfg80211: Calling CRDA to update world regulatory domain
    [ 16.672892] cfg80211: Calling CRDA to update world regulatory domain
    [ 16.823470] cfg80211: Calling CRDA to update world regulatory domain
    [ 19.214957] wlp5s0: authenticate with 34:a8:4e:ba:ad:e1
    [ 19.221013] wlp5s0: send auth to 34:a8:4e:ba:ad:e1 (try 1/3)
    [ 19.227206] wlp5s0: authenticated
    [ 19.230045] wlp5s0: associate with 34:a8:4e:ba:ad:e1 (try 1/3)
    [ 19.248588] wlp5s0: RX AssocResp from 34:a8:4e:ba:ad:e1 (capab=0x431 status=0 aid=23)
    [ 19.257832] wlp5s0: associated
    [ 19.257908] IPv6: ADDRCONF(NETDEV_CHANGE): wlp5s0: link becomes ready
    [ 19.257975] cfg80211: Calling CRDA to update world regulatory domain
    [ 30.859993] fuse init (API version 7.23)
    [ 61.490049] Corrupted low memory at c000be3c (be3c phys) = b0360004
    [ 61.490058] ------------[ cut here ]------------
    [ 61.490067] WARNING: CPU: 1 PID: 15 at arch/x86/kernel/check.c:140 check_for_bios_corruption+0x8d/0xd0()
    [ 61.490068] Memory corruption detected in low memory
    [ 61.490070] Modules linked in: fuse ctr ccm uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core v4l2_common videodev media joydev arc4 iwldvm mac80211 mousedev iwlwifi sky2 snd_hda_codec_realtek cfg80211 snd_hda_codec_generic radeon r592 ttm coretemp drm_kms_helper iTCO_wdt drm iTCO_vendor_support hwmon snd_hda_intel i2c_i801 microcode i2c_algo_bit snd_hda_controller memstick snd_hda_codec evdev mac_hid snd_hwdep snd_pcm psmouse lpc_ich pcspkr i2c_core serio_raw snd_timer sony_laptop snd rfkill thermal intel_agp intel_gtt agpgart soundcore shpchp ac button battery video acpi_cpufreq processor ext4 crc16 mbcache jbd2 hid_generic usbhid hid sd_mod sr_mod crc_t10dif cdrom crct10dif_common atkbd libps2 ahci libahci libata firewire_ohci scsi_mod sdhci_pci sdhci led_class mmc_core firewire_core
    [ 61.490135] crc_itu_t ehci_pci uhci_hcd ehci_hcd usbcore usb_common i8042 serio
    [ 61.490144] CPU: 1 PID: 15 Comm: kworker/1:0 Not tainted 3.16.3-1-ARCH #1
    [ 61.490146] Hardware name: Sony Corporation VGN-NS12M_W/VAIO, BIOS R0190Y3 07/09/2008
    [ 61.490150] Workqueue: events check_corruption
    [ 61.490153] 00000000 5313ea34 00000000 f5957e7c c1461b35 f5957ec0 f5957eb0 c104f322
    [ 61.490159] c152e99c f5957ee0 0000000f c1526b8d 0000008c c103f67d 0000008c c103f67d
    [ 61.490165] c0010000 00000000 c16d2b10 f5957ecc c104f37e 00000009 f5957ec0 c152e99c
    [ 61.490171] Call Trace:
    [ 61.490177] [<c1461b35>] dump_stack+0x48/0x69
    [ 61.490182] [<c104f322>] warn_slowpath_common+0x82/0xa0
    [ 61.490185] [<c103f67d>] ? check_for_bios_corruption+0x8d/0xd0
    [ 61.490189] [<c103f67d>] ? check_for_bios_corruption+0x8d/0xd0
    [ 61.490192] [<c104f37e>] warn_slowpath_fmt+0x3e/0x60
    [ 61.490196] [<c103f67d>] check_for_bios_corruption+0x8d/0xd0
    [ 61.490200] [<c103f6d0>] check_corruption+0x10/0x40
    [ 61.490204] [<c106807c>] process_one_work+0x10c/0x3b0
    [ 61.490208] [<c10685d1>] worker_thread+0x41/0x4c0
    [ 61.490211] [<c1068590>] ? init_pwq.part.25+0x10/0x10
    [ 61.490214] [<c106dbe3>] kthread+0xb3/0xd0
    [ 61.490219] [<c1466a41>] ret_from_kernel_thread+0x21/0x30
    [ 61.490222] [<c106db30>] ? kthread_create_on_node+0x130/0x130
    [ 61.490225] ---[ end trace 6a662771a9f66f05 ]---
    [ 829.749973] perf interrupt took too long (2511 > 2495), lowering kernel.perf_event_max_sample_rate to 50100

    Hi,
    I've been trying several of the things suggested, with the following results
    - Clearing the session cache did nothing (I never saved a session, so it was no surprise)
    - Starting xfce4 without slim (startxfce4) yielded different results, the first time after booting up it takes the same long time to load xfce, and the console messages leads to a log called xorg.log in .local/share:
    [ 113.303]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 113.304] X Protocol Version 11, Revision 0
    [ 113.304] Build Operating System: Linux 3.16.1-1-ARCH i686
    [ 113.304] Current Operating System: Linux tetto-arch 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 22:00:02 CEST 2014 i686
    [ 113.304] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=1a4fcdfd-1e9f-47e4-97f5-1ebf0a0a629e rw acpi=nonvs quiet
    [ 113.304] Build Date: 21 September 2014 10:55:38AM
    [ 113.304]
    [ 113.304] Current version of pixman: 0.32.6
    [ 113.304] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 113.304] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 113.305] (==) Log file: "/home/chikitulfo/.local/share/xorg/Xorg.0.log", Time: Wed Oct 8 13:58:55 2014
    [ 113.400] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 113.400] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 113.457] (==) No Layout section. Using the first Screen section.
    [ 113.457] (==) No screen section available. Using defaults.
    [ 113.457] (**) |-->Screen "Default Screen Section" (0)
    [ 113.457] (**) | |-->Monitor "<default monitor>"
    [ 113.473] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 113.473] (**) | |-->Device "Radeon"
    [ 113.473] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 113.473] (==) Automatically adding devices
    [ 113.473] (==) Automatically enabling devices
    [ 113.473] (==) Automatically adding GPU devices
    [ 113.609] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 113.609] Entry deleted from font path.
    [ 113.609] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 113.610] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 113.610] Entry deleted from font path.
    [ 113.610] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 113.610] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 113.610] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 113.610] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 113.631] (II) Loader magic: 0x82a0700
    [ 113.631] (II) Module ABI versions:
    [ 113.631] X.Org ANSI C Emulation: 0.4
    [ 113.631] X.Org Video Driver: 18.0
    [ 113.631] X.Org XInput driver : 21.0
    [ 113.631] X.Org Server Extension : 8.0
    [ 113.634] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 113.634] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 113.634] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 113.637] (--) PCI:*(0:1:0:0) 1002:95c2:104d:9045 rev 0, Mem @ 0xc0000000/268435456, 0xd0020000/65536, I/O @ 0x0000d000/256, BIOS @ 0x????????/131072
    [ 113.637] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 113.638] (II) LoadModule: "glx"
    [ 113.653] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 113.999] (II) Module glx: vendor="X.Org Foundation"
    [ 113.999] compiled for 1.16.1, module version = 1.0.0
    [ 113.999] ABI class: X.Org Server Extension, version 8.0
    [ 113.999] (==) AIGLX enabled
    [ 113.999] (II) LoadModule: "radeon"
    [ 113.999] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 114.031] (II) Module radeon: vendor="X.Org Foundation"
    [ 114.031] compiled for 1.16.1, module version = 7.5.0
    [ 114.031] Module class: X.Org Video Driver
    [ 114.031] ABI class: X.Org Video Driver, version 18.0
    [ 114.031] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 114.037] (++) using VT number 1
    [ 114.037] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 114.046] (II) [KMS] Kernel modesetting enabled.
    [ 114.046] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 114.046] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 114.046] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 114.046] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 114.046] (==) RADEON(0): Default visual is TrueColor
    [ 114.046] (**) RADEON(0): Option "EnablePageFlip"
    [ 114.046] (**) RADEON(0): Option "ColorTiling"
    [ 114.046] (**) RADEON(0): Option "RenderAccel"
    [ 114.046] (WW) RADEON(0): Option "AccelMethod" requires a string value
    [ 114.046] (**) RADEON(0): Option "EXAVSync"
    [ 114.046] (**) RADEON(0): Option "EXAPixmaps"
    [ 114.046] (==) RADEON(0): RGB weight 888
    [ 114.046] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 114.046] (--) RADEON(0): Chipset: "ATI Mobility Radeon HD 3430" (ChipID = 0x95c2)
    [ 114.046] (II) Loading sub module "dri2"
    [ 114.046] (II) LoadModule: "dri2"
    [ 114.046] (II) Module "dri2" already built-in
    [ 114.046] (II) Loading sub module "exa"
    [ 114.046] (II) LoadModule: "exa"
    [ 114.046] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 114.061] (II) Module exa: vendor="X.Org Foundation"
    [ 114.061] compiled for 1.16.1, module version = 2.6.0
    [ 114.061] ABI class: X.Org Video Driver, version 18.0
    [ 114.061] (II) RADEON(0): KMS Color Tiling: enabled
    [ 114.061] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 114.062] (II) RADEON(0): KMS Pageflipping: enabled
    [ 114.062] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 114.080] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 114.080] (II) RADEON(0): Output LVDS has no monitor section
    [ 114.100] (II) RADEON(0): EDID for output VGA-0
    [ 114.100] (II) RADEON(0): EDID for output LVDS
    [ 114.100] (II) RADEON(0): Printing probed modes for output LVDS
    [ 114.100] (II) RADEON(0): Modeline "1280x800"x59.8 68.00 1280 1312 1376 1408 800 802 804 808 -hsync -vsync (48.3 kHz eP)
    [ 114.100] (II) RADEON(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 114.100] (II) RADEON(0): Modeline "1152x768"x59.8 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 114.100] (II) RADEON(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 114.100] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 114.100] (II) RADEON(0): Modeline "848x480"x59.7 31.50 848 872 952 1056 480 483 493 500 -hsync +vsync (29.8 kHz)
    [ 114.100] (II) RADEON(0): Modeline "720x480"x59.7 26.75 720 744 808 896 480 483 493 500 -hsync +vsync (29.9 kHz)
    [ 114.100] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 114.101] (II) RADEON(0): Output VGA-0 disconnected
    [ 114.101] (II) RADEON(0): Output LVDS connected
    [ 114.101] (II) RADEON(0): Using exact sizes for initial modes
    [ 114.101] (II) RADEON(0): Output LVDS using initial mode 1280x800
    [ 114.101] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 114.101] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:fbd8000
    [ 114.101] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 114.101] (==) RADEON(0): DPI set to (96, 96)
    [ 114.101] (II) Loading sub module "fb"
    [ 114.101] (II) LoadModule: "fb"
    [ 114.101] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 114.114] (II) Module fb: vendor="X.Org Foundation"
    [ 114.114] compiled for 1.16.1, module version = 1.0.0
    [ 114.114] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 114.114] (II) Loading sub module "ramdac"
    [ 114.114] (II) LoadModule: "ramdac"
    [ 114.114] (II) Module "ramdac" already built-in
    [ 114.114] (--) Depth 24 pixmap format is 32 bpp
    [ 114.115] (II) RADEON(0): [DRI2] Setup complete
    [ 114.115] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 114.115] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 114.115] (II) RADEON(0): Front buffer size: 4000K
    [ 114.115] (II) RADEON(0): VRAM usage limit set to 228470K
    [ 114.127] (==) RADEON(0): Backing store enabled
    [ 114.127] (II) RADEON(0): Direct rendering enabled
    [ 114.127] (II) RADEON(0): EXA VSync enabled
    [ 114.127] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 114.127] (II) EXA(0): Driver registered support for the following operations:
    [ 114.127] (II) Solid
    [ 114.127] (II) Copy
    [ 114.127] (II) Composite (RENDER acceleration)
    [ 114.127] (II) UploadToScreen
    [ 114.127] (II) DownloadFromScreen
    [ 114.127] (II) RADEON(0): Acceleration enabled
    [ 114.127] (==) RADEON(0): DPMS enabled
    [ 114.127] (==) RADEON(0): Silken mouse enabled
    [ 114.128] (II) RADEON(0): Set up textured video
    [ 114.128] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 114.128] (II) RADEON(0): [XvMC] Extension initialized.
    [ 114.128] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 114.129] (WW) RADEON(0): Option "AccelDFS" is not used
    [ 114.129] (--) RandR disabled
    [ 114.964] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 114.964] (II) AIGLX: enabled GLX_ARB_create_context
    [ 114.964] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 114.964] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 114.964] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 114.964] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 114.964] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 114.964] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 114.964] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 114.965] (II) AIGLX: Loaded and initialized r600
    [ 114.965] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 114.966] (II) RADEON(0): Setting screen physical size to 338 x 211
    [ 115.291] (II) config/udev: Adding input device Sony Vaio Keys (/dev/input/event6)
    [ 115.291] (**) Sony Vaio Keys: Applying InputClass "evdev keyboard catchall"
    [ 115.291] (II) LoadModule: "evdev"
    [ 115.292] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 115.331] (II) Module evdev: vendor="X.Org Foundation"
    [ 115.331] compiled for 1.16.0, module version = 2.9.0
    [ 115.331] Module class: X.Org XInput Driver
    [ 115.331] ABI class: X.Org XInput driver, version 21.0
    [ 115.331] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 11 paused 0
    [ 115.331] (II) Using input driver 'evdev' for 'Sony Vaio Keys'
    [ 115.331] (**) Sony Vaio Keys: always reports core events
    [ 115.332] (**) evdev: Sony Vaio Keys: Device: "/dev/input/event6"
    [ 115.332] (--) evdev: Sony Vaio Keys: Vendor 0x104d Product 0
    [ 115.332] (--) evdev: Sony Vaio Keys: Found keys
    [ 115.332] (II) evdev: Sony Vaio Keys: Configuring as keyboard
    [ 115.332] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input8/event6"
    [ 115.332] (II) XINPUT: Adding extended input device "Sony Vaio Keys" (type: KEYBOARD, id 6)
    [ 115.332] (**) Option "xkb_rules" "evdev"
    [ 115.332] (**) Option "xkb_model" "pc104"
    [ 115.332] (**) Option "xkb_layout" "us"
    [ 115.365] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/event7)
    [ 115.365] (II) No input driver specified, ignoring this device.
    [ 115.365] (II) This device may have been added with another device file.
    [ 115.366] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/mouse1)
    [ 115.366] (II) No input driver specified, ignoring this device.
    [ 115.366] (II) This device may have been added with another device file.
    [ 115.366] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
    [ 115.366] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 115.367] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 12 paused 0
    [ 115.367] (II) Using input driver 'evdev' for 'Video Bus'
    [ 115.367] (**) Video Bus: always reports core events
    [ 115.367] (**) evdev: Video Bus: Device: "/dev/input/event2"
    [ 115.367] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 115.367] (--) evdev: Video Bus: Found keys
    [ 115.367] (II) evdev: Video Bus: Configuring as keyboard
    [ 115.367] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/LNXVIDEO:01/input/input3/event2"
    [ 115.367] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 115.367] (**) Option "xkb_rules" "evdev"
    [ 115.367] (**) Option "xkb_model" "pc104"
    [ 115.367] (**) Option "xkb_layout" "us"
    [ 115.368] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 115.368] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 115.368] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 13 paused 0
    [ 115.368] (II) Using input driver 'evdev' for 'Power Button'
    [ 115.368] (**) Power Button: always reports core events
    [ 115.368] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 115.368] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 115.368] (--) evdev: Power Button: Found keys
    [ 115.368] (II) evdev: Power Button: Configuring as keyboard
    [ 115.368] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5/event4"
    [ 115.368] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 115.368] (**) Option "xkb_rules" "evdev"
    [ 115.368] (**) Option "xkb_model" "pc104"
    [ 115.368] (**) Option "xkb_layout" "us"
    [ 115.369] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 115.369] (II) No input driver specified, ignoring this device.
    [ 115.369] (II) This device may have been added with another device file.
    [ 115.370] (II) config/udev: Adding input device UVC Camera (05ca:18b3) (/dev/input/event12)
    [ 115.370] (**) UVC Camera (05ca:18b3): Applying InputClass "evdev keyboard catchall"
    [ 115.370] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 14 paused 0
    [ 115.370] (II) Using input driver 'evdev' for 'UVC Camera (05ca:18b3)'
    [ 115.370] (**) UVC Camera (05ca:18b3): always reports core events
    [ 115.370] (**) evdev: UVC Camera (05ca:18b3): Device: "/dev/input/event12"
    [ 115.370] (--) evdev: UVC Camera (05ca:18b3): Vendor 0x5ca Product 0x18b3
    [ 115.370] (--) evdev: UVC Camera (05ca:18b3): Found keys
    [ 115.370] (II) evdev: UVC Camera (05ca:18b3): Configuring as keyboard
    [ 115.370] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input13/event12"
    [ 115.370] (II) XINPUT: Adding extended input device "UVC Camera (05ca:18b3)" (type: KEYBOARD, id 9)
    [ 115.370] (**) Option "xkb_rules" "evdev"
    [ 115.370] (**) Option "xkb_model" "pc104"
    [ 115.370] (**) Option "xkb_layout" "us"
    [ 115.371] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
    [ 115.371] (II) No input driver specified, ignoring this device.
    [ 115.371] (II) This device may have been added with another device file.
    [ 115.371] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event9)
    [ 115.371] (II) No input driver specified, ignoring this device.
    [ 115.371] (II) This device may have been added with another device file.
    [ 115.372] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
    [ 115.372] (II) No input driver specified, ignoring this device.
    [ 115.372] (II) This device may have been added with another device file.
    [ 115.372] (II) config/udev: Adding input device OM (/dev/input/event1)
    [ 115.372] (**) OM: Applying InputClass "evdev pointer catchall"
    [ 115.373] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 15 paused 0
    [ 115.373] (II) Using input driver 'evdev' for 'OM'
    [ 115.373] (**) OM: always reports core events
    [ 115.373] (**) evdev: OM: Device: "/dev/input/event1"
    [ 115.373] (--) evdev: OM: Vendor 0x4f3 Product 0x232
    [ 115.373] (--) evdev: OM: Found 3 mouse buttons
    [ 115.373] (--) evdev: OM: Found scroll wheel(s)
    [ 115.373] (--) evdev: OM: Found relative axes
    [ 115.373] (--) evdev: OM: Found x and y relative axes
    [ 115.373] (II) evdev: OM: Configuring as mouse
    [ 115.373] (II) evdev: OM: Adding scrollwheel support
    [ 115.373] (**) evdev: OM: YAxisMapping: buttons 4 and 5
    [ 115.373] (**) evdev: OM: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 115.373] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.0/0003:04F3:0232.0001/input/input2/event1"
    [ 115.373] (II) XINPUT: Adding extended input device "OM" (type: MOUSE, id 10)
    [ 115.373] (II) evdev: OM: initialized for relative axes.
    [ 115.373] (**) OM: (accel) keeping acceleration scheme 1
    [ 115.373] (**) OM: (accel) acceleration profile 0
    [ 115.373] (**) OM: (accel) acceleration factor: 2.000
    [ 115.373] (**) OM: (accel) acceleration threshold: 4
    [ 115.374] (II) config/udev: Adding input device OM (/dev/input/mouse0)
    [ 115.374] (II) No input driver specified, ignoring this device.
    [ 115.374] (II) This device may have been added with another device file.
    [ 115.374] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 115.374] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 115.375] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 16 paused 0
    [ 115.375] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 115.375] (**) AT Translated Set 2 keyboard: always reports core events
    [ 115.375] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 115.375] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 115.375] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 115.375] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 115.375] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 115.375] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 115.375] (**) Option "xkb_rules" "evdev"
    [ 115.375] (**) Option "xkb_model" "pc104"
    [ 115.375] (**) Option "xkb_layout" "us"
    [ 115.376] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
    [ 115.376] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 115.376] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 115.376] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 115.376] (II) LoadModule: "synaptics"
    [ 115.376] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 115.391] (II) Module synaptics: vendor="X.Org Foundation"
    [ 115.392] compiled for 1.16.0, module version = 1.8.1
    [ 115.392] Module class: X.Org XInput Driver
    [ 115.392] ABI class: X.Org XInput driver, version 21.0
    [ 115.392] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 17 paused 0
    [ 115.392] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 115.392] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 115.392] (**) Option "Device" "/dev/input/event11"
    [ 115.426] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5696 (res 64)
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 5232 (res 106)
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 115.427] (**) Option "TapButton1" "1"
    [ 115.427] (**) Option "TapButton2" "2"
    [ 115.427] (**) Option "TapButton3" "3"
    [ 115.427] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 115.427] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 115.427] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event11"
    [ 115.427] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 115.427] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 115.427] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 115.427] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 115.428] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 115.428] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 115.429] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse2)
    [ 115.429] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 115.430] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 115.430] (II) No input driver specified, ignoring this device.
    [ 115.430] (II) This device may have been added with another device file.
    [ 140.030] (II) UnloadModule: "synaptics"
    [ 140.030] (II) systemd-logind: releasing fd for 13:75
    [ 140.063] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 140.063] (II) UnloadModule: "evdev"
    [ 140.063] (II) systemd-logind: releasing fd for 13:64
    [ 140.113] (II) evdev: OM: Close
    [ 140.113] (II) UnloadModule: "evdev"
    [ 140.113] (II) systemd-logind: releasing fd for 13:65
    [ 140.166] (II) evdev: UVC Camera (05ca:18b3): Close
    [ 140.166] (II) UnloadModule: "evdev"
    [ 140.166] (II) systemd-logind: releasing fd for 13:76
    [ 140.230] (II) evdev: Power Button: Close
    [ 140.230] (II) UnloadModule: "evdev"
    [ 140.230] (II) systemd-logind: releasing fd for 13:68
    [ 140.254] (II) evdev: Video Bus: Close
    [ 140.255] (II) UnloadModule: "evdev"
    [ 140.255] (II) systemd-logind: releasing fd for 13:66
    [ 140.283] (II) evdev: Sony Vaio Keys: Close
    [ 140.283] (II) UnloadModule: "evdev"
    [ 140.283] (II) systemd-logind: releasing fd for 13:70
    [ 140.498] (EE) Server terminated successfully (0). Closing log file.
    If I log out to the console and run startxfce4 again then it does load faster.
    The messages that show on the console I didn't know how to copy them, is there any easy way?
    Last edited by Chikitulfo (2014-10-08 12:24:02)

  • Problems running xfce (&icewm), issues with xorg...?

    Hi,
    I am making a 2. attempt at arch linux. I have installed arch on my laptop. The first problem I don't seem to be able to overcome without help is getting xorg working.
    When i run startx the tty hangs. Its not even recovered by killing startx from another tty.
    First i tried startx without exec. This is the exception in that it did not hang. Then i tried startex with "exec startxfce4" in the .xinitrc. I tried again after a reboot becouse of the message:
    /usr/bin/startxfce4: X server already running on display :0
    I made an additional attemt using icewm in place of xfce, it did also hang the tty.
    My laptop has an integrated intel graphics chip, as well as a NVIDIA dedicated graphics card.
    00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
    01:00.0 VGA compatible controller: NVIDIA Corporation GF119M [NVS 4200M] (rev a1)
    At first I tried installing only the NVIDIA driver, but they did not load correctly, assuming I understand the logs. The same with the intel driver. As a result, xorg did not recognize my display. Therefore I have all of the following installed:
    xf86-video-intel      xf86-video-nouveau  nvidia  xf86-video-vesa
    When I explicitly installed the vesa driver, I did not see an error saying that no monitor was found.
    In addition i have the following packages installed:
    xorg-server xorg-server-utils xorg-xinit  xfce4 icewm
    In addition I may have done
    pacman -S xorg and chosen the default xf86-input-evdev
    I have put the logs and such here:
    http://folk.uio.no/henrikq/arch/xorg/
    I have no idea what to do at this point, so help would be appreciated.

    Sorry about the long absence, I have been busy.
    I do indeed have Optimus. I had a friend look at the problem. He set me up with an .xinitrc and xorg.conf. We got stuck at black screen on startx. I have managed to account for all error but one:
    [ 111.205] (EE) Screen 1 deleted because of no matching config section.
    xrandr --listproviders, gives:
    Providers: number : 2
    Provider 0: id: 0x2af cap: 0x1, Source Output crtcs: 0 outputs: 0 associated providers: 0 name:NVIDIA-0
    Provider 1: id: 0x43 cap: 0x2, Sink Output crtcs: 2 outputs: 2 associated providers: 0 name:modesetting
    I have put log files etc here:
    http://folk.uio.no/henrikq/arch/xorg2/

  • Problem with Xfce-svn & thunar

    Hi, I've got a problem with Xfce-svn installed via pacman from
    Server = http://arch.os-zen.net/pkg/xfce-svn
    After logging, Xfce is loading and after while I can see 2 panels and black screen (and without icons on desktop) although I set the wallpaper. It shows up after ca 5 minutes. What's more - when I want to start Thunar I must wait few minutes. I thought it was caused by some error with thunar package, but I've updated thunar few times since it happened first time.
    I post this problem on polish forum, but it's unsolved... Can somebody help me?

    xaerxess wrote:
    Hi, I've got a problem with Xfce-svn installed via pacman from
    Server = http://arch.os-zen.net/pkg/xfce-svn
    After logging, Xfce is loading and after while I can see 2 panels and black screen (and without icons on desktop) although I set the wallpaper. It shows up after ca 5 minutes. What's more - when I want to start Thunar I must wait few minutes. I thought it was caused by some error with thunar package, but I've updated thunar few times since it happened first time.
    I post this problem on polish forum, but it's unsolved... Can somebody help me?
    How did you start xfce? Was it using CPU while you're waiting? You could try to start xterm after x (without desktop), then run the following to see if each of them works:
    · xfdesktop &
    · xfce4-panel &
    · xfwm4 --daemon

  • Where to find Crystal Report Formats for SAP B1 8.8 (India Localization) ?

    Hi Experts,
    do anybody knows Where to find Crystal Report Formats for SAP B1 8.8 (India Localization) ?
    For example
    Sales Register
    Purchase Register
    Journal Register
    Sales Analysis - Crystal Report
    Purchase Analysis - Crystal Report
    Check Register - Crystal Report
    Production register
    Pending Sales Order
    Outstanding Receivable
    Outstanding Payable
    BankBook
    CashBook
    General Ledger
    BP Ledger (Customer / Supplier)
    Trial Balance
    Balance Sheet
    Profit & Loss Statment
    Cash Flow statment
    Excise reports
       RG 23 A Part I
       RG 23 A Part II
       RG 23 C Part I
       RG 23 C Part II
       Daily Stock Account
       RG 1
       ER 1
       etc....
    Documets Layout
       Incoming Payment
       Outgoing Payment
       Journal Entry
       Transaction Journal Report - Crystal Report
       Sales Quotation
       Sales Order
       Sales Delivery
       Sales Return
       Sales Invoice (A/R Invoice)
       Purchase Order
       Goods Receipt PO
       Purchase Goods Return
       Purchase Invoice (A/P Invoice)
      Inventory Transfer
      Inventory - Goods Receipt
      Inventory - Goods Issue
    Best Regards,
    Samir Gandhi

    Hi Neetu,
    Do you wish that at all customer site all concern involved in implemtation do the same work ?
    I believe ERP is meant for single entry system, and it should be true for implementation also, why to invest man hours for the same task ?
    I expect it standard reports should be released by SAP, so that speed of implementation improve, we have more nos. of satisfied customers.
    customised reports is all together different and it is understood that it is needed to be developed after study the exact requirement.
    Best Regards,
    Samir Gandhi

Maybe you are looking for