[phonon-qt4-gstreamer] Why pulseaudio is a mandatory dependency ?

I discover that pulseaudio is now a mandatory dependency for the 4.8.0.1 version of phonon-qt4-gstreamer package,
https://www.archlinux.org/packages/extr … gstreamer/
but I don't want to use pulseaudio, I use alsa for the sound, the previous version of phonon-qt4-gstreamer doesn't need pulseaudio,
so why this change ?
is it a mistake from the maintener ?
the other phonon backend ( phonon-qt4-vlc ) doesn't need of pulseaudio, so it should be the same for phonon-qt4-gstreamer,
some people have problems with pulseaudio ( bugs ), so this change will bring problems if pulseaudio is installed when we want to install phonon-qt4-gstreamer 4.8.0.1

https://projects.archlinux.org/svntogit … e29f00c8f6
 If you want to, try installing it while ignoring the pulseaudio dependency, but leave libpulse in place.

Similar Messages

  • [solved] phonon-qt4-gstreamer requires pulseaudio

    which is required by phonon-qt4 which is required by kdelibs which is required by kdebase-runtime which in turn is required by quite a few applications.
    As such with my latest update I was forced to install pulseaudio and now my sound is all fucked up
    Is there any workaround for this? As in any way that I can install phonon-qt4 without pulseaudio? I didn't need it before (this came with my latest system update), it becomes a problem with some window managers that all applications set to auto detect sound driver will go for pulse which I have no intention of using.
    Last edited by rabcor (2014-09-10 10:47:13)

    @rabcor How about searching next time first?
    https://bbs.archlinux.org/viewtopic.php?pid=1454970
    https://bbs.archlinux.org/viewtopic.php?pid=1454958

  • Why Division is not Mandatory in CRM

    Hi ,
    I am new to CRM...I am working in SD.
    Just want to know why division is not mandatory in CRM like in SD.
    Thanks for your time
    RamaChandra

    Hi Ramachandra,
    In CRM, mainly the relationship between tables is built based on GUID field. So in order to extract the data from tables we will use the GUID field as key field. So it's not necessary to have remaining fields as key fields.
    You can go through the tables structure and you will be able to understand.
    Thanks,
    Lakshmi P

  • Why  SAP script is client dependent ?

    why  SAP script is client dependent ?

    Hi,
    By design, SAP script is a word processing tool which displays data on the form with the help of text elements where the logic of those is written in the print program and Forms were designed to be driven from print program, hence are often termed as client dependent. Smart forms are client independent. Bcoz it doesnu2019t use any text elements. It will be executed through a function module. When a print program calls a Smart Form, the form itself takes over to produce output, without any further direction from print program.
    Pelase reward if useful.
    Bye

  • Why SAP Script are Client Dependent, Smartforms are client-independent.

    why  SAP Script are Client Dependent,Smartforms are client-independent.
    Edited by: Srinivasa Reddy Ariga on Oct 27, 2008 12:28 PM
    Edited by: Srinivasa Reddy Ariga on Oct 27, 2008 12:49 PM

    Before you do anything else, read this: Welcome and Rules of Engagement
    Google is your friend.  Try keywords smartforms client dependent   Next time - search first and ask second.
    oh, and it helps to get the correct forum...

  • Why invoice currency not mandatory?

    Why is invoice currency not mandatory?
    For instance oinv.doccur is defined as nullable.  inv1 / rin1.currency too.  At the row level there are gaps in our data when zero amounts are entered.  You could argue that a zero amount has no currency yet there would be an intent of currency due to the parent oinv currency.
    Gaps in schema data become a pain (though small) at the reporting side of any system.

    Hi,
    B1 always look up document currency first. Unless you override with different currency in line level, it can be null.
    In your reporting, you need to use the same logic to check document currency first.
    Thanks,
    Gordon

  • Why archivelog mode is mandatory for hot backups.

    Hi,
    Why the database should be put in archivelog mode when we take hot backups. What happens actually. Why can't we put in noarchivelog mode and take hot backups?

    Suppose you are not using RMAN then you must put your tablespaces in backup mode. Otherwise the backup you can take will be unrecoverable.
    In order to recover from a Hot Backup you have to do followings
    - Restore your Hot Backup
    - Recover the database - here, the archive log files are important
    How does Oracle know what has to be recovered from archivelogs?It looks at the SCN.
    If you never put your tablespaces in backup mode then SCN would not be frozen and Oracle wouldn't know what has to be recovered.
    Talip Hakan Ozturk
    http://taliphakanozturken.wordpress.com/

  • Why is the advertising mandatory?

    On the top of every email I send with Adobe Idea, the program automatically inserts
    Created using Adobe® Ideas
    http://www.adobe.com/products/adobeideas
    I cannot find a way to deactivate this and its really frusturating. It makes the whole thing so commercial and ugly. Manually deleting it every time is such a hassle and it has really turned me off from the whole product.
    There are also lines that show up above and below the image on the left hand side of the email. Why is this happening?
    Is there a way around these detractors?
    Josh

    I checked into this for you. The only way to remove is manually like you have been.

  • ADF BC / Why bind variables are mandatory in the sql query

    I got this error during view object excecution in the component browser :
    (oracle.jbo.SQLStmtException) JBO-27122: Erreur SQL lors de la préparation d'une instruction. Instruction : SELECT * FROM (Select distinct(socialgroup.socialgroup_i) from socialgroup, socialgroupmember, lodgingallocation, lodge
    where socialgroup.socialgroup_i = socialgroupmember.socialgroup_i and socialgroupmember.t_socialgrouprole_i = t_rolegroup_ipar.fgetflextypologyclassitem_i(t_rolegroup_ipar.fisbeneficiary) and socialgroupmember.datefrom <= :DateTo and nvl(socialgroupmember.dateto, :DateFrom) >= :DateFrom and socialgroupmember.requester_i = lodgingallocation.requester_i and lodgingallocation.datefrom <= :DateTo and nvl(lodgingAllocation.DateTo, :DateFrom) >= :DateFrom and lodgingallocation.lodge_i = lodge.lodge_i) QRSLT ORDER BY "SOCIALGROUP_I"
    ----- LEVEL 1: DETAIL 0-----
    (java.sql.SQLException) Tentative de définition d'un nom de paramètre qui ne se trouve pas dans le SQL: T_SICategory_I
    The bind variables T_SICategory_I is not yet use in the sql query but will be used later so i defined it for the view object.
    Is it a reason that the run time check this ? It would be more convenient to set the bind variables early when defining the view object and add them later during the development iteration.

    Design-time defined named bind variables can be marked as required, or not.
    This is decided by the use in the where clause or in view criteria. In my case the bind variable was not used in where clause neither in view criteria and that causes the error.
    May be i would be nice to add a check box (a flag) that enable or disable the bind variables for this checking so we will be able to let it defined even we removed some part of the query corresponding to the corresponding restriction or we defined it earlier for a part of the query that is not yet defined.
    In my current case i fully defined the bind variables but would refine my query later ... in that cause i would have to remove this bind variable and loose all the definitions to run this view object.
    sorry for my english ...

  • Why does the 'cairo' package depend against 'mesa'?

    I get why the 'cairo' package depends on 'libgl', but does anyone know why it depends on 'mesa', too?
    As a nvidia user, I'd really prefer not to have to install all of 'mesa' (and everything that it depends on).
    P.S.: Lacking a better place I'm posting here since this was triggered by the recent 'libgl' merge with 'mesa'.

    Meyithi wrote:
    https://bbs.archlinux.org/viewtopic.php?id=158744
    I don't know, neither does anybody else...
    I'm guessing that nvidia-utils/lib32-nvidia-utils needs to somehow provide something that stops us having to pull in all of the crud but it's a guess as even the devs don't seem to have worked it out.
    I did read that thread but it didn't seem strictly relevant, though it does explain what mesa has to do with all this.
    What I'm actually asking is why we are requiring mesa for cairo (which we are compiling ourselves), since it is seems to be optional [1]. For example, neither Debian nor Ubuntu seem to require mesa for cairo.
    [1] http://www.linuxfromscratch.org/blfs/vi … cairo.html

  • Why does external modules not depend on a specific kernel version ?

    Hi,
    I'm quite new to Archlinux and there are a few things I don't understand about the way pacman handles kernel and modules packages.
    I understand that modules in the repository are only build against the current kernel version and that you should update both at the same time to keep your system in a working state, however I don't understand why the package system does not enforce that.
    For example if I look at the current nvidia modules (100.14.19-3), it will install its stuff in lib/modules/2.6.23-ARCH and hence (should) depends on kernel26>=2.6.23.
    However if I take a look at the package itself, it only depends on kernel26.
    If I upgrade the modules without upgrading the kernel or upgrade the kernel without upgrading the modules, I will break my system.
    In my opinion (but I may be missing something) the package manager should be robust and should make sure your system stay in a coherent state.
    Is there a technical reason for this or is this only to avoid having to modify the packages dependencies each time a new kernel is release ?

    Very interesting, I was right when I said I was probably missing something
    As I said in my first post, I'm a new archlinux user. I'm more familiar with debian/ubuntu systems.
    The way they are solving this kind of issue is simply by putting the kernel version number in the package name.
    For example you have nvidia-kernel-2.6.23-1 which depends on linux-image-2.6.23-1.
    This solves these kind of upgrade issues (I did a search in the forums before creating this thread and I saw there were a hell lot of kernel/modules dependency issues that have already been reported by other users).
    The advantage of this system is that you can keep both the old and the new kernel package on your system at the same time are revert to the previous version if something goes wrong.
    However the drawback is that you have to maintain several versions of the same package in the repository at the same time, which may be contrary to the archlinux philosophy...

  • Why does mesa appear to depend on nvidia?

    I just did a reinstall, planning to switch to KDE... And now mesa depends on nvidia, and nvidia does not even install proberly. It seems that kdelibs depends on nvidia too... So all of the sudden, I can't use KDE, can't start any apps that use libGL, can't use a goddamned thing. And mesa's newfangled nvidia dependency isn't mentioned in the entry on the Arch main page either... What the fuck happened?!

    1. This was on the first install of X11. Nvidia was a DEPENDENCY OF MESA, meaning that I HAD TO INSTALL IT.
    2. Xorg was NOT running, since this was the first installation of Xorg, not an upgrade.
    3. I do NOT use nvidia, and have no need for it.
    4. A successful install of nvidia would probably break Xorg for me anyway, because nvidia uses its own version of libGL.
    When posting, please read the original message. Thnx.

  • [S]Systemd can't start Load Kernel Modules after upgrade to Linux 4.0

    After upgrading from linux 3.19.3-3 to 4.0.1-1 I've been having a bit of an issue. At that same time I upgraded readline (6.3.006-1 → 6.3.008-1), linux-firmware (20150206.17657c3-1 → 20150410.ec89525-1), nvidia (349.16-1 → 349.16-2) , wpa_suplican (2.4-1 → 1:2.3-1), and  arpack (3.1.5-1 → 3.2.0-1). There may be some typos there since I'm copying by hand. Normally this wouldn't be much of a problem because I have been, priory to a few weeks ago, really good about back ups and would just roll my OS back 15 minutes. But things like that tend to fly out the window when the semester gets heavy. My last snapshot was on May 22nd, which I could still use, but would rather not. Also, it seems like a good idea to try to actual fix things for a change.
    [edit] I should mention that this upgrade was run April 30th.[/edit]
    When I finished booting the system after the upgrade, I got an error message during boot “systemd[1]: Failed to start Load Kernel Modules.” When it finished booting I run “dmesg -l err” to confirm that I'm not having a bad day dream or something. I'm also still seeing the errors that I described in this thread. Don't know if the two are related. I also noticed, when I was logging in, that it said that my stystem was still using the old kernel. Indeed, according to “uname -r” I'm still using 3.19.3-3-ARCH.
    The closest thing to experience I have with this is when I forget to mount /boot before upgrading linux, so I made sure /boot was mounted and rand “sudo pacman -S linux” to reinstall, but this didn't help. Just to check I ran “ls /lib/modules” and see the directorys “4.0.1-1-ARCH” and “extramodules-4.0-ARCH” as I would expect after a succesful upgrade of the kernel.
    Running “systemctl –failed, shows that in addition to systemd-modules-load.service, lm_sensors.service has also failed. I somehow expect lm_sensors depends on systemd-modules-load. I tried “systemctl restart systemd-modules-load”, but was rewarded with a message telling me that it failed. The “journalctl -xe” log has the lines
    systemd[1]: system-modules-load[1799]: Failed to look up alias 'sg': Function not implemented
    systemd[1]: system-modules-load[1799]: Failed to look up alias 'nfs': Function not implemented
    Looking at the Wiki for Systemd under troubleshooting it actually has an example of trying to work through this exact issue. Following that I tried
    journalctl _PID=1799
    systemd[1]: system-modules-load[1799]: Failed to look up alias 'sg': Function not implemented
    systemd[1]: system-modules-load[1799]: Failed to look up alias 'nfs': Function not implemented
    which I already mentioned. At this point that bit of the Wiki stopped being useful.
    Looking up on Google Failed to look up alias 'nfs': Function not implemented returned this thread from two years ago. Running “lsmod |grep sg” or $lsmod |grep nfs” returns nothing, but it also returns nothing on this laptop I'm using as well, so I don't imagine that is useful. Also, “# grep nfs /lib/modules/4.0.1-1-ARCH/modules.alias” returns a “Nosuch file or directory” error.
    Searching for something on 'sg' turned up https://bbs.archlinux.org/viewtopic.php?id=165361, which was also not useful.
    As a sort of last resort I tried https://wiki.archlinux.org/index.php/Do … the_kernel
    I reboot and boot into my fallback installation, running 3.19.3-3, mount the partition with my main Arch on it, and arch-chroot into it.
    I downgraded linux, and nvidia, exited chroot, and rebooted hoping to the Great Bacon that I didn't do anything too damaging. After all, my back ups are more than a week out of date.
    This worked. I'm still getting those annyoing (they are only annoying right?) error messages I mentioned earlier. My system seems fine, if somewhat out of date.
    Still, the question remains, “why did that happen, and how do I actually fix it?”
    [edit2=solution]
    There were two problems. First, my grub.cfg entry was pointing to the wrong UUID. I fixed this by regenerating it. Then I noticed the UUID in the grub menu itself (during the boot prosses) did not match what was in grub.cfg. To fix this I reinstalled grub.
    Last edited by nstgc (2015-05-05 12:07:30)

    Well, I took snapshots, not back ups but they work well enough for this, and rsynced /boot/ to where it use to be, moved/renamed the subvolume boot, and commented out the appropriate line in fstab. I also deleted that other /boot from before. I unmount /boot, and regenerate my grub.cfg. If my machine still boots, I'll try for an upgrade.
    grub.cfg now looks like
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="0"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_msdos
    insmod part_msdos
    insmod part_msdos
    insmod btrfs
    set root='hd4,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 --hint-bios=hd5,msdos4 --hint-efi=hd5,msdos4 --hint-baremetal=ahci5,msdos4 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    else
    search --no-floppy --fs-uuid --set=root 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    fi
    font="/arch/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
    # Fallback normal timeout code in case the timeout_style feature is
    # unavailable.
    else
    set timeout=5
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-3873d8ba-9472-4d92-ab0d-e94574bd0eae' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod part_msdos
    insmod part_msdos
    insmod btrfs
    set root='hd4,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 --hint-bios=hd5,msdos4 --hint-efi=hd5,msdos4 --hint-baremetal=ahci5,msdos4 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    else
    search --no-floppy --fs-uuid --set=root 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    fi
    echo 'Loading Linux linux ...'
    linux /arch/boot/vmlinuz-linux root=UUID=3873d8ba-9472-4d92-ab0d-e94574bd0eae rw rootflags=subvol=arch quiet
    echo 'Loading initial ramdisk ...'
    initrd /arch/boot/intel-ucode.img /arch/boot/initramfs-linux.img
    submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-3873d8ba-9472-4d92-ab0d-e94574bd0eae' {
    menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-3873d8ba-9472-4d92-ab0d-e94574bd0eae' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod part_msdos
    insmod part_msdos
    insmod btrfs
    set root='hd4,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 --hint-bios=hd5,msdos4 --hint-efi=hd5,msdos4 --hint-baremetal=ahci5,msdos4 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    else
    search --no-floppy --fs-uuid --set=root 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    fi
    echo 'Loading Linux linux ...'
    linux /arch/boot/vmlinuz-linux root=UUID=3873d8ba-9472-4d92-ab0d-e94574bd0eae rw rootflags=subvol=arch quiet
    echo 'Loading initial ramdisk ...'
    initrd /arch/boot/intel-ucode.img /arch/boot/initramfs-linux.img
    menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-3873d8ba-9472-4d92-ab0d-e94574bd0eae' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod part_msdos
    insmod part_msdos
    insmod btrfs
    set root='hd4,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 --hint-bios=hd5,msdos4 --hint-efi=hd5,msdos4 --hint-baremetal=ahci5,msdos4 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    else
    search --no-floppy --fs-uuid --set=root 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    fi
    echo 'Loading Linux linux ...'
    linux /arch/boot/vmlinuz-linux root=UUID=3873d8ba-9472-4d92-ab0d-e94574bd0eae rw rootflags=subvol=arch quiet
    echo 'Loading initial ramdisk ...'
    initrd /arch/boot/intel-ucode.img /arch/boot/initramfs-linux-fallback.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    menuentry 'Windows Vista (loader) (on /dev/sdd2)' --class windows --class os $menuentry_id_option 'osprober-chain-30F403F0F403B75E' {
    insmod part_gpt
    insmod ntfs
    set root='hd3,gpt2'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd3,gpt2 --hint-efi=hd3,gpt2 --hint-baremetal=ahci3,gpt2 30F403F0F403B75E
    else
    search --no-floppy --fs-uuid --set=root 30F403F0F403B75E
    fi
    chainloader +1
    menuentry 'Windows Vista (loader) (on /dev/sdd4)' --class windows --class os $menuentry_id_option 'osprober-chain-FE2648382647EFE7' {
    insmod part_gpt
    insmod ntfs
    set root='hd3,gpt4'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd3,gpt4 --hint-efi=hd3,gpt4 --hint-baremetal=ahci3,gpt4 FE2648382647EFE7
    else
    search --no-floppy --fs-uuid --set=root FE2648382647EFE7
    fi
    chainloader +1
    menuentry 'Arch (on /dev/sdd5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd' {
    insmod part_gpt
    insmod ext2
    set root='hd3,gpt5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd3,gpt5 --hint-efi=hd3,gpt5 --hint-baremetal=ahci3,gpt5 832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd
    else
    search --no-floppy --fs-uuid --set=root 832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd
    fi
    linux /boot/vmlinuz-linux root=/dev/sdd5
    initrd /boot/initramfs-linux.img
    submenu 'Advanced options for Arch (on /dev/sdd5)' $menuentry_id_option 'osprober-gnulinux-advanced-832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd' {
    menuentry 'Arch (on /dev/sdd5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd' {
    insmod part_gpt
    insmod ext2
    set root='hd3,gpt5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd3,gpt5 --hint-efi=hd3,gpt5 --hint-baremetal=ahci3,gpt5 832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd
    else
    search --no-floppy --fs-uuid --set=root 832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd
    fi
    linux /boot/vmlinuz-linux root=/dev/sdd5
    initrd /boot/initramfs-linux.img
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    if [ "${grub_platform}" == "pc" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
    search --fs-uuid --no-floppy --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 --hint-bios=hd5,msdos4 --hint-efi=hd5,msdos4 --hint-baremetal=ahci5,msdos4 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    linux16 /arch/boot/memtest86+/memtest.bin
    fi
    ### END /etc/grub.d/60_memtest86+ ###
    It seems as if the lines you mentioned, Scimmia, have changed. I'll take that as a good sign.
    [edit] System still boots. Trying for the upgrade.
    [edit2] Still can't use Linux 4.0. I'm getting the same errors as before.
    [edit3] Successfully downgraded.
    [edit4] I looked through /etc/mkinitcpio.conf and there isn't anything in there that isn't in my laptop's. I don't know if this will help, but here is the output of "pacman -Q"
    a52dec 0.7.4-8
    aalib 1.4rc5-10
    abs 2.4.4-2
    accountsservice 0.6.40-1
    acl 2.2.52-2
    adobe-source-han-sans-jp-fonts 1.002-1
    adwaita-icon-theme 3.16.0-1
    alsa-lib 1.0.29-1
    alsa-plugins 1.0.29-2
    alsa-utils 1.0.29-1
    alsi 0.4.7-1
    arch-install-scripts 15-1
    arch-wiki-docs 20150219-1
    arch-wiki-lite 20150219-2
    archlinux-keyring 20150212-1
    arpack 3.2.0-1
    aspell 0.60.6.1-2
    asunder 2.7-1
    at-spi2-atk 2.16.0-1
    at-spi2-core 2.16.0-1
    atk 2.16.0-1
    atkmm 2.22.7-1
    attr 2.4.47-1
    autoconf 2.69-2
    automake 1.15-1
    avahi 0.6.31-15
    awesome 3.5.6-1
    bash 4.3.033-1
    bash-completion 2.1-5
    bc 1.06.95-1
    bcache-tools 1.0.8-1
    bigpkg 0.4.0-2
    binutils 2.25-2
    bison 3.0.4-1
    blas 3.5.0-1
    bluez 5.30-1
    bluez-libs 5.30-1
    bonnie++ 1.97-1
    boost 1.58.0-1
    boost-libs 1.58.0-1
    btrfs-progs 3.19.1-1
    bullet 2.82-1
    bzip2 1.0.6-5
    ca-certificates 20150402-1
    ca-certificates-cacert 20140824-2
    ca-certificates-mozilla 3.18-3
    ca-certificates-utils 20150402-1
    cabextract 1.4-3
    cairo 1.14.2-1
    cairo-clock 0.3.4-4
    cairo-dock 3.4.1-1
    cairo-dock-plug-ins 3.4.1-1
    cairomm 1.10.0-3
    calibre 2.27.0-1
    cantarell-fonts 0.0.16-2
    caribou 0.4.18.1-1
    cddb-py 1.4-7
    cdparanoia 10.2-5
    cdrdao 1.2.3-7
    cdrtools 3.01a28-1
    celt 0.11.3-2
    cfv 1.18.3-6
    cheese 3.16.1-1
    chmlib 0.40-4
    chromaprint 1.1-2
    chromium 42.0.2311.135-1
    chromium-pepper-flash 1:17.0.0.169-3
    cifs-utils 6.4-1
    cinnamon-desktop 2.4.2-1
    cinnamon-translations 2.4.4-1
    clementine 1.2.3-5
    clucene 2.3.3.4-8
    clutter 1.22.0-2
    clutter-gst2 2.0.14-1
    clutter-gtk 1.6.0-2
    cmus 2.6.0-4
    cogl 1.20.0-1
    colord 1.2.9-2
    colord-gtk 0.1.26-2
    compositeproto 0.4.2-3
    confuse 2.7-3
    coreutils 8.23-1
    cracklib 2.9.4-1
    cryptsetup 1.6.6-1
    cups 2.0.2-4
    cups-filters 1.0.68-1
    cups-pk-helper 0.2.5-1
    curl 7.42.0-1
    damageproto 1.2.1-3
    db 5.3.28-2
    dbus 1.8.16-2
    dbus-glib 0.102-2
    dconf 0.24.0-1
    desktop-file-utils 0.22-1
    device-mapper 2.02.116-1
    dhclient 4.3.2-1
    dhcpcd 6.8.1-1
    dia 0.97.3-1
    dialog 1:1.2_20150225-1
    dictd 1.12.1-4
    diffutils 3.3-2
    ding-libs 0.4.0-3
    djvulibre 3.5.27-1
    dnssec-anchors 20150403-1
    dotconf 1.3-4
    dri2proto 2.8-2
    dri3proto 1.0-1
    dvd+rw-tools 7.1-5
    dvdisaster 0.72.6-1
    e2fsprogs 1.42.12-2
    ecryptfs-utils 106-1
    ed 1.11-1
    efl 1.13.2-1
    elementary 1.13.2-1
    elfutils 0.161-3
    enca 1.16-1
    enchant 1.6.0-5
    enlightenment 0.19.4-1
    evas_generic_loaders 1.13.2-1
    evince 3.16.0-1
    exempi 2.2.2-1
    exfat-utils 1.1.1-1
    exif-py 1.2.0-1
    exiv2 0.24-1
    expac 4-3
    expat 2.1.0-4
    extcalc 0.9.3_1-3
    faac 1.28-5
    faad2 2.7-4
    fakeroot 1.20.2-1
    fbreader 0.99.4-4
    ffmpeg 1:2.6.2-1
    fftw 3.3.4-1
    file 5.22-1
    file-roller 3.16.1-1
    filesystem 2015.02-1
    findutils 4.4.2-6
    firefox 37.0.2-1
    fixesproto 5.0-3
    flac 1.3.1-1
    flashplugin 11.2.202.457-1
    flex 2.5.39-1
    fltk 1.3.3-4
    fluidsynth 1.1.6-4
    fontconfig 2.11.1-1
    fontsproto 2.1.3-1
    foomatic-db 3:20150308-1
    foomatic-db-engine 3:20150308-1
    freetype2 2.5.5-1
    fribidi 0.19.6-2
    fsarchiver 0.6.19-1
    fuse 2.9.3-2
    fuse-exfat 1.1.0-1
    gawk 4.1.2-1
    gc 7.4.2-2
    gcc-fortran 4.9.2-4
    gcc-libs-multilib 4.9.2-4
    gcc-multilib 4.9.2-4
    gconf 3.2.6-3
    gcr 3.15.92-1
    gd 2.1.1-2
    gdb 7.9-1
    gdbm 1.11-1
    gdk-pixbuf2 2.31.3-1
    geany 1.24.1-1
    gemrb 0.8.2-1
    geoclue 0.12.99-2
    geoclue2 2.2.0-2
    geocode-glib 3.16.0-1
    gettext 0.19.4-1
    ghostscript 9.16-1
    giflib 5.1.1-1
    git 2.3.7-1
    gjs 1.43.3-1
    glew 1.12.0-1
    glib-networking 2.44.0-2
    glib2 2.44.0-1
    glibc 2.21-3
    glibmm 2.44.0-1
    glproto 1.4.17-1
    glu 9.0.0-3
    gmime 2.6.20-2
    gmp 6.0.0-2
    gnome-bluetooth 3.16.1-1
    gnome-color-manager 3.16.0-1
    gnome-control-center 3.16.1-2
    gnome-desktop 1:3.16.1-1
    gnome-dictionary 3.16.1-1
    gnome-disk-utility 3.16.0-1
    gnome-menus 3.13.3-1
    gnome-online-accounts 3.16.0-2
    gnome-session 3.16.0-1
    gnome-settings-daemon 3.16.1-1
    gnome-shell 3.16.1-2
    gnome-shell-extensions 3.16.1-1
    gnome-system-monitor 3.16.0-1
    gnome-themes-standard 3.16.0-1
    gnome-tweak-tool 3.16.1-1
    gnome-video-effects 0.4.1-1
    gnupg 2.1.3-3
    gnuplot 5.0.0-2
    gnutls 3.4.0-1
    gobject-introspection 1.44.0-1
    gobject-introspection-runtime 1.44.0-1
    google-chrome 42.0.2311.135-1
    gparted 0.22.0-1
    gpgme 1.5.4-1
    gpm 1.20.7-4
    graphite 1:1.2.4-1
    grep 2.21-2
    grilo 0.2.12-1
    groff 1.22.3-3
    grsync 1.2.5-1
    grub 1:2.02.beta2-5
    gsettings-desktop-schemas 3.16.1-1
    gsfonts 20150122-1
    gsm 1.0.13-8
    gssproxy 0.4.1-1
    gst-libav 1.4.5-1
    gst-plugins-bad 1.4.5-2
    gst-plugins-base 1.4.5-1
    gst-plugins-base-libs 1.4.5-1
    gst-plugins-good 1.4.5-2
    gst-plugins-ugly 1.4.5-2
    gstreamer 1.4.5-1
    gstreamer0.10 0.10.36-4
    gstreamer0.10-base 0.10.36-3
    gstreamer0.10-base-plugins 0.10.36-3
    gstreamer0.10-good 0.10.31-6
    gstreamer0.10-good-plugins 0.10.31-6
    gstreamer0.10-python 0.10.22-2
    gstreamer0.10-ugly 0.10.19-14
    gstreamer0.10-ugly-plugins 0.10.19-14
    gthumb 3.4.0-1
    gtk-update-icon-cache 2.24.27-1
    gtk2 2.24.27-1
    gtk3 3.16.2-1
    gtkmm 2.24.4-1
    gtkmm3 3.16.0-1
    guile 2.0.11-2
    gvfs 1.24.1-1
    gvfs-mtp 1.24.1-1
    gzip 1.6-1
    hal-info 0.20091130-2
    harfbuzz 0.9.40-2
    harfbuzz-icu 0.9.40-2
    haveged 1.9.1-2
    hdparm 9.45-1
    hdsentinel 0.8-2
    help2man 1.46.4-1
    hicolor-icon-theme 0.13-1
    hplip 3.15.4-1
    hspell 1.2-2
    htmlcxx 0.85-4
    htop 1.0.3-2
    hunspell 1.3.3-1
    hwids 20150129-1
    hwinfo 21.10.1.1-1
    hwloc 1.10.1-1
    hyphen 2.8.8-1
    i3-wm 4.10.2-1
    i3lock 2.6-1
    i3status 2.9-1
    i7z 0.27.2.git1-1
    iana-etc 2.30-4
    icedtea-web 1.5.2-1
    icu 55.1-1
    imagemagick 6.9.1.0-1
    imagewriter 1.10.1420800585.134a9b3-1
    imlib2 1.4.7-1
    inetutils 1.9.2-2
    innoextract 1.4-0
    inputproto 2.3.1-1
    intel-tbb 4.3_20150209-1
    intel-ucode 20150121-1
    inxi 2.2.19-1
    iproute2 3.19.0-1
    iptables 1.4.21-3
    iputils 20121221-3
    ipython 3.1.0-1
    iso-codes 3.57-1
    jack 0.124.1-3
    jansson 2.7-1
    jasper 1.900.1-13
    java-environment-common 2-2
    java-runtime-common 2-2
    jdk7-openjdk 7.u79_2.5.5-1
    jfsutils 1.1.15-4
    jmtpfs 0.5-1
    jre7-openjdk 7.u79_2.5.5-1
    jre7-openjdk-headless 7.u79_2.5.5-1
    js 24.2.0-1
    js17 17.0.0-1
    json-c 0.12-2
    json-glib 1.0.2-1
    jsoncpp 1.4.4-1
    julia 2:0.3.7-1
    julia-docs 2:0.3.7-1
    kbd 2.0.2-1
    kbproto 1.0.7-1
    keyutils 1.5.9-1
    kmod 20-1
    krb5 1.13.1-1
    kvirc 4.2.0-4
    lame 3.99.5-2
    lapack 3.5.0-1
    lcms 1.19-5
    lcms2 2.6-1
    ldb 1.1.20-1
    ldns 1.6.17-2
    less 471-1
    lgogdownloader-git 20150310-1
    lib32-acl 2.2.52-2
    lib32-alsa-lib 1.0.29-1
    lib32-alsa-plugins 1.0.29-2
    lib32-atk 2.16.0-1
    lib32-attr 2.4.47-1
    lib32-bzip2 1.0.6-2
    lib32-cairo 1.14.2-1
    lib32-curl 7.41.0-1
    lib32-db 5.3.28-2
    lib32-e2fsprogs 1.42.12-1
    lib32-elfutils 0.161-2
    lib32-expat 2.1.0-2
    lib32-fakeroot 1.20.2-1
    lib32-flac 1.3.1-1
    lib32-flashplugin 11.2.202.457-1
    lib32-fontconfig 2.11.1-1
    lib32-freetype2 2.5.5-1
    lib32-gcc-libs 4.9.2-4
    lib32-gdk-pixbuf2 2.31.3-2
    lib32-gettext 0.19.4-1
    lib32-giflib 5.1.1-1
    lib32-glew 1.12.0-1
    lib32-glib2 2.44.0-1
    lib32-glibc 2.21-2
    lib32-glu 9.0.0-2
    lib32-gmp 6.0.0-1
    lib32-gnutls 3.4.0-2
    lib32-gsm 1.0.13-9
    lib32-gtk2 2.24.27-1
    lib32-harfbuzz 0.9.40-2
    lib32-icu 55.1-1
    lib32-jack 0.124.1-1
    lib32-json-c 0.12-1
    lib32-keyutils 1.5.9-1
    lib32-krb5 1.13.1-1
    lib32-lcms2 2.6-1
    lib32-libaio 0.3.110-1
    lib32-libasyncns 0.8-7
    lib32-libcanberra 0.30-4
    lib32-libcap 2.24-1
    lib32-libcl 1.1-1
    lib32-libcups 2.0.2-2
    lib32-libdbus 1.8.16-1
    lib32-libdrm 2.4.60-1
    lib32-libffi 3.2.1-1
    lib32-libgcrypt 1.6.3-1
    lib32-libgpg-error 1.18-1
    lib32-libice 1.0.9-1
    lib32-libidn 1.30-1
    lib32-libjpeg-turbo 1.4.0-1
    lib32-libldap 2.4.40-1
    lib32-libltdl 2.4.5-1
    lib32-libnl 3.2.25-1
    lib32-libogg 1.3.2-1
    lib32-libpcap 1.6.2-1
    lib32-libpciaccess 0.13.4-1
    lib32-libpng 1.6.16-1
    lib32-libpulse 6.0-1
    lib32-libsamplerate 0.1.8-2
    lib32-libsm 1.2.2-1
    lib32-libsndfile 1.0.25-3
    lib32-libssh2 1.5.0-1
    lib32-libtasn1 4.4-1
    lib32-libtiff 4.0.3-3
    lib32-libtxc_dxtn 1.0.1-5
    lib32-libusb 1.0.19-1
    lib32-libvorbis 1.3.5-1
    lib32-libx11 1.6.3-1
    lib32-libxau 1.0.8-1
    lib32-libxcb 1.11-1
    lib32-libxcomposite 0.4.4-2
    lib32-libxcursor 1.1.14-1
    lib32-libxdamage 1.1.4-2
    lib32-libxdmcp 1.1.2-1
    lib32-libxext 1.3.3-1
    lib32-libxfixes 5.0.1-1
    lib32-libxft 2.3.2-1
    lib32-libxi 1.7.4-1
    lib32-libxinerama 1.1.3-1
    lib32-libxml2 2.9.2-1
    lib32-libxmu 1.1.2-1
    lib32-libxrandr 1.4.2-1
    lib32-libxrender 0.9.8-1
    lib32-libxshmfence 1.2-1
    lib32-libxslt 1.1.28-2
    lib32-libxt 1.1.4-1
    lib32-libxtst 1.2.2-1
    lib32-libxxf86vm 1.1.4-1
    lib32-llvm-libs 3.6.0-1
    lib32-mesa 10.5.4-1
    lib32-mpg123 1.22.1-1
    lib32-ncurses 5.9-3
    lib32-nettle 3.1.1-1
    lib32-nspr 4.10.8-1
    lib32-nss 3.18-1
    lib32-nvidia-libgl 349.16-1
    lib32-nvidia-utils 349.16-1
    lib32-openal 1.16.0-1
    lib32-openssl 1.0.2.a-1
    lib32-p11-kit 0.23.1-2
    lib32-pango 1.36.8-1
    lib32-pcre 8.36-1
    lib32-pixman 0.32.6-1
    lib32-portaudio 19_20140130-1
    lib32-readline 6.3.008-1
    lib32-sdl 1.2.15-6
    lib32-soundtouch 1.8.0-1
    lib32-sqlite 3.8.9-1
    lib32-systemd 219-1
    lib32-tdb 1.3.4-1
    lib32-util-linux 2.26.1-1
    lib32-v4l-utils 1.6.0-1
    lib32-wayland 1.7.0-1
    lib32-wxgtk 3.0.2-4
    lib32-xz 5.2.1-1
    lib32-zlib 1.2.8-1
    libabw 0.1.1-1
    libaio 0.3.110-1
    libao 1.2.0-1
    libarchive 3.1.2-8
    libart-lgpl 2.3.21-3
    libass 0.12.1-1
    libassuan 2.2.0-1
    libasyncns 0.8-5
    libatasmart 0.19-3
    libatomic_ops 7.4.2-1
    libavc1394 0.5.4-2
    libbluray 0.8.0-1
    libbsd 0.7.0-1
    libcaca 0.99.beta18-2
    libcanberra 0.30-5
    libcanberra-pulse 0.30-5
    libcap 2.24-2
    libcap-ng 0.7.4-1
    libcddb 1.3.2-4
    libcdio 0.93-1
    libcdio-paranoia 10.2+0.93+1-1
    libcdr 0.1.1-2
    libcl 1.1-4
    libcroco 0.6.8-2
    libcue 1.4.0-4
    libcups 2.0.2-4
    libdaemon 0.14-3
    libdatrie 0.2.8-1
    libdbus 1.8.16-2
    libdca 0.0.5-4
    libdrm 2.4.60-2
    libdv 1.0.0-6
    libdvbpsi 1:1.1.2-1
    libdvdcss 1.3.0-1
    libdvdnav 5.0.2-1
    libdvdread 5.0.1-1
    libe-book 0.1.2-2
    libebml 1.3.1-1
    libedit 20150325_3.1-1
    libepoxy 1.2-2
    libetonyek 0.1.1-1
    libev 4.19-1
    libevdev 1.4.2-1
    libevent 2.0.22-1
    libexif 0.6.21-2
    libffi 3.2.1-1
    libfontenc 1.1.3-1
    libftdi-compat 0.20-1
    libgcrypt 1.6.3-2
    libgcrypt15 1.5.4-4
    libgdm 3.16.1.1-1
    libgee 0.18.0-1
    libglade 2.6.4-5
    libgme 0.6.0-3
    libgnome-keyring 3.12.0-2
    libgnomekbd 3.6.0-2
    libgpg-error 1.19-1
    libgpod 0.8.3-4
    libgssglue 0.4-2
    libgsystem 2015.1-1
    libgtop 2.30.0-1
    libgusb 0.2.4-1
    libgweather 3.16.1-1
    libgxps 0.2.2-3
    libibus 1.5.10-1
    libical 1.0.1-2
    libice 1.0.9-1
    libid3tag 0.15.1b-8
    libidn 1.30-1
    libiec61883 1.2.0-4
    libimobiledevice 1.2.0-1
    libinput 0.14.1-1
    libirman 0.4.5-4
    libjpeg-turbo 1.4.0-1
    libkate 0.4.1-5
    libksba 1.3.3-1
    liblastfm 1.0.9-1
    libldap 2.4.40-2
    liblqr 0.4.2-1
    libmaa 1.3.2-2
    libmad 0.15.1b-7
    libmatroska 1.4.2-1
    libmediainfo 0.7.73-1
    libmikmod 3.3.7-1
    libmm-glib 1.4.6-1
    libmms 0.6.4-1
    libmng 2.0.2-3
    libmodplug 0.8.8.5-1
    libmp4v2 2.0.0-3
    libmpc 1.0.3-1
    libmpcdec 1.2.6-4
    libmpeg2 0.5.1-5
    libmspub 0.1.2-2
    libmtp 1.1.8-1
    libmwaw 0.3.4-1
    libmygpo-qt 1.0.8-1
    libndp 1.4-1
    libnewt 0.52.18-2
    libnl 3.2.25-1
    libnm-glib 1.0.0-2
    libnotify 0.7.6-1
    liboauth 1.0.3-1
    libodfgen 0.1.3-1
    libofa 0.9.3-5
    libogg 1.3.2-1
    libomxil-bellagio 0.9.3-1
    libpagemaker 0.0.2-1
    libpaper 1.1.24-7
    libpcap 1.6.2-1
    libpciaccess 0.13.4-1
    libpipeline 1.4.0-1
    libplist 1.12-1
    libpng 1.6.16-1
    libproxy 0.4.11-5
    libpulse 6.0-1
    libpwquality 1.2.3-1
    libquvi 0.9.4-3
    libquvi-scripts 0.9.20131130-2
    libqzeitgeist 0.8.0-4
    libraw 0.16.0-3
    libraw1394 2.1.0-2
    libreoffice-fresh 4.4.2-1
    librevenge 0.0.2-1
    librpcsecgss 0.19-8
    librsvg 1:2.40.9-1
    libsamplerate 0.1.8-3
    libsasl 2.1.26-7
    libseccomp 2.2.0-1
    libsecret 0.18-1
    libshout 1:2.3.1-2
    libsidplay 1.36.59-6
    libsigc++ 2.4.1-1
    libsigsegv 2.10-2
    libsm 1.2.2-2
    libsndfile 1.0.25-3
    libsodium 1.0.2-1
    libsoup 2.50.0-1
    libspectre 0.2.7-2
    libsrtp 15.1c9bd90-3
    libssh 0.6.5-1
    libssh2 1.5.0-1
    libsystemd 219-6
    libtar 1.2.20-2
    libtasn1 4.4-1
    libteam 1.14-2
    libthai 0.1.21-1
    libtheora 1.1.1-3
    libtiff 4.0.3-5
    libtiger 0.3.4-4
    libtirpc 0.2.5-1
    libtool 2.4.6-1
    libtxc_dxtn 1.0.1-6
    libunibreak 1.1-1
    libunistring 0.9.5-1
    libunwind 1.1-2
    libupnp 1.6.19-1
    libusb 1.0.19-1
    libusb-compat 0.1.5-1
    libusbmuxd 1.0.10-1
    libutempter 1.1.6-2
    libutil-linux 2.26.1-3
    libva 1.5.1-1
    libvdpau 1.1-1
    libvisio 0.1.1-2
    libvisual 0.4.0-5
    libvorbis 1.3.5-1
    libvpx 1.4.0-2
    libwacom 0.11-1
    libwbclient 4.2.1-1
    libwebp 0.4.3-1
    libwmf 0.2.8.4-12
    libwpd 0.10.0-1
    libwpg 0.3.0-1
    libwps 0.3.1-1
    libx11 1.6.3-1
    libx264 2:144.20150223-1
    libx86 1.1-4
    libx86emu 1.1.23.1-1
    libxau 1.0.8-2
    libxaw 1.0.13-1
    libxcb 1.11-1
    libxcomposite 0.4.4-2
    libxcursor 1.1.14-2
    libxdamage 1.1.4-2
    libxdg-basedir 1.2.0-3
    libxdmcp 1.1.2-1
    libxext 1.3.3-1
    libxfixes 5.0.1-1
    libxfont 1.5.1-1
    libxft 2.3.2-1
    libxi 1.7.4-1
    libxinerama 1.1.3-2
    libxkbcommon 0.5.0-1
    libxkbcommon-x11 0.5.0-1
    libxkbfile 1.0.9-1
    libxklavier 5.4-1
    libxml2 2.9.2-2
    libxmu 1.1.2-1
    libxp 1.0.3-1
    libxpm 3.5.11-1
    libxrandr 1.4.2-2
    libxrender 0.9.9-1
    libxshmfence 1.2-1
    libxslt 1.1.28-3
    libxss 1.2.2-2
    libxt 1.1.5-1
    libxtst 1.2.2-1
    libxv 1.0.10-1
    libxvmc 1.0.9-1
    libxxf86dga 1.1.4-1
    libxxf86vm 1.1.4-1
    libyaml 0.1.6-1
    libzen 0.4.31-1
    libzip 0.11.2-1
    licenses 20140629-1
    links 2.9-1
    linux 3.19.3-3
    linux-api-headers 3.18.5-1
    linux-firmware 20150410.ec89525-1
    lirc 1:0.9.2.a-1
    llvm-libs 3.6.0-5
    lm_sensors 3.3.5-1
    logrotate 3.8.9-1
    lpsolve 5.5.2.0-3
    lrzip 0.621-1
    lua 5.2.4-1
    lua-bitop 1.0.2-5
    lua-expat 1.3.0-1
    lua-lgi 0.8.0-2
    lua-socket 3.0rc1-4
    lua51 5.1.5-4
    luajit 2.0.3-3
    lvm2 2.02.116-1
    lxdream 0.9.1-3
    lz4 128-1
    lzo 2.09-1
    m4 1.4.17-1
    make 4.1-1
    man-db 2.7.1-1
    man-pages 3.83-1
    mcomix 1.01-1
    mcpp 2.7.2-5
    mdadm 3.3.2-1
    memtest86+ 5.01-1
    mencoder 37379-3
    mesa 10.5.4-1
    metamorphose2 0.8.3-2
    mime-types 9-1
    minitube 2.4-1
    mjpegtools 2.1.0-1
    mkinitcpio 18-2
    mkinitcpio-busybox 1.21.1-2
    mkvtoolnix-cli 7.8.0-3
    mobile-broadband-provider-info 20120614-2
    morituri-git 0.2.3.r3.gb1d685f-1
    mozilla-common 1.4-4
    mpfr 3.1.2.p11-1
    mpg123 1.22.1-1
    mplayer 37379-3
    mtdev 1.1.5-1
    mutagen 1.28-1
    mutter 3.16.1.1-1
    ncurses 5.9-7
    nemo 2.4.5-1
    neon 0.30.1-1
    net-snmp 5.7.3-1
    netctl 1.10-2
    nettle 3.1.1-1
    network-manager-applet 1.0.0-2
    networkmanager 1.0.0-2
    nfs-utils 1.3.2-6
    nfsidmap 0.26-1
    nm-connection-editor 1.0.0-2
    npth 1.2-1
    nspr 4.10.8-1
    nss 3.18-3
    ntfs-3g 2015.3.14-1
    nvidia 349.16-1
    nvidia-libgl 349.16-1
    nvidia-utils 349.16-1
    ogmtools 1.5-5
    openal 1.16.0-1
    opencore-amr 0.1.3-2
    openjpeg 1.5.2-1
    openmpi 1.8.4-1
    openresolv 3.6.1-1
    openssh 6.8p1-2
    openssl 1.0.2.a-1
    opus 1.1-1
    orc 0.4.23-1
    os-prober 1.64-1
    p11-kit 0.23.1-2
    p7zip 9.38.1-3
    package-query 1.5-2
    pacman 4.2.1-1
    pacman-mirrorlist 20150315-1
    pacmatic 20150126-1
    pam 1.1.8-5
    pambase 20130928-1
    pango 1.36.8-1
    pangomm 2.36.0-1
    par2cmdline-tbb 20141125-1
    parallel 20150322-1
    parted 3.2-2
    patch 2.7.5-1
    pciutils 3.3.1-1
    pcmciautils 018-7
    pcre 8.36-2
    pcsx2-git 1.3.1.r978.1aebca3-1
    perl 5.20.2-1
    perl-clone 0.37-2
    perl-data-dump 1.22-1
    perl-dbi 1.633-1
    perl-encode-locale 1.04-1
    perl-error 0.17023-1
    perl-file-basedir 0.07-1
    perl-file-listing 6.04-2
    perl-file-which 1.09-4
    perl-html-parser 3.71-3
    perl-html-tagset 3.20-4
    perl-http-cookies 6.01-2
    perl-http-daemon 6.01-2
    perl-http-date 6.02-2
    perl-http-message 6.06-2
    perl-http-negotiate 6.01-2
    perl-ipc-system-simple 1.25-1
    perl-libwww 6.08-1
    perl-locale-gettext 1.05-11
    perl-lwp-mediatypes 6.02-2
    perl-net-http 6.07-1
    perl-uri 1.67-1
    perl-www-robotrules 6.02-2
    perl-xml-libxml 2.0121-1
    perl-xml-namespacesupport 1.11-3
    perl-xml-sax 0.99-4
    perl-xml-sax-base 1.08-3
    phonon-qt4 4.8.3-1
    phonon-qt4-gstreamer 4.8.2-1
    phoronix-test-suite 5.6.0-1
    php 5.6.8-2
    pinentry 0.9.1-1
    pixman 0.32.6-1
    pkg-config 0.28-2
    pkgfile 15-1
    pms 1.90.1-1
    podofo 0.9.3-1
    polkit 0.112-2
    poppler 0.32.0-1
    poppler-glib 0.32.0-1
    poppler-qt5 0.32.0-1
    popt 1.16-7
    portaudio 19_20140130-1
    presentproto 1.0-1
    printproto 1.0.5-3
    procps-ng 3.3.10-2
    protobuf 2.6.1-1
    psmisc 22.21-2
    pth 2.0.7-5
    pulseaudio 6.0-1
    pulseaudio-alsa 2-3
    pv 1.6.0-1
    pygobject-devel 3.16.1-1
    pygobject2-devel 2.28.6-11
    pygtk 2.24.0-5
    pyqt4-common 4.11.3-4
    pyqt5-common 5.4.1-2
    python 3.4.3-2
    python-dateutil 2.4.1-1
    python-dbus 1.2.0-4
    python-dbus-common 1.2.0-4
    python-gmpy2 2.0.5-2
    python-gobject 3.16.1-1
    python-html2text 2015.4.14-1
    python-matplotlib 1.4.3-2
    python-mpmath 0.19-1
    python-nose 1.3.6-1
    python-numexpr 2.4.3-1
    python-numpy 1.9.2-2
    python-pandas 0.16.0-2
    python-pygments 2.0.2-2
    python-pyparsing 2.0.3-1
    python-pyqt4 4.11.3-4
    python-pyqt5 5.4.1-2
    python-pytz 2015.2-1
    python-pyzmq 14.5.0-2
    python-scipy 0.15.1-2
    python-setuptools 1:15.2-1
    python-sip 4.16.7-1
    python-six 1.9.0-1
    python-sympy 0.7.6-2
    python-tornado 4.1.0-2
    python-xdg 0.25-2
    python2 2.7.9-1
    python2-apsw 3.8.9-1
    python2-atspi 2.16.0-1
    python2-beaker 1.7.0-1
    python2-cairo 1.10.0-2
    python2-chardet 2.3.0-1
    python2-cherrypy 3.6.0-1
    python2-cssselect 0.9.1-2
    python2-cssutils 1.0-2
    python2-dateutil 2.4.1-1
    python2-dbus 1.2.0-4
    python2-dnspython 1.12.0-1
    python2-gobject 3.16.1-1
    python2-gobject2 2.28.6-11
    python2-html5lib 0.999-5
    python2-lxml 3.4.4-1
    python2-mako 1.0.1-1
    python2-markupsafe 0.23-2
    python2-mechanize 0.2.5-4
    python2-netifaces 0.10.4-1
    python2-pillow 2.8.1-1
    python2-psutil 2.2.1-2
    python2-pycdio 0.20-3
    python2-pygments 2.0.2-2
    python2-pyqt5 5.4.1-2
    python2-setuptools 1:15.2-1
    python2-sip 4.16.7-1
    python2-six 1.9.0-1
    python2-xdg 0.25-2
    qca 2.0.3-5
    qca-ossl 2.0.0-7
    qjson 0.8.1-3
    qpdf 5.1.2-1
    qt4 4.8.6-5
    qt5-base 5.4.1-4
    qt5-declarative 5.4.1-4
    qt5-location 5.4.1-4
    qt5-script 5.4.1-4
    qt5-sensors 5.4.1-4
    qt5-svg 5.4.1-4
    qt5-tools 5.4.1-4
    qt5-translations 5.4.1-4
    qt5-webchannel 5.4.1-4
    qt5-webkit 5.4.1-4
    qt5-xmlpatterns 5.4.1-4
    qtchooser 48-1
    qtwebkit 2.3.4-1
    randrproto 1.4.1-1
    raptor 2.0.15-2
    rasqal 1:0.9.32-1
    readline 6.3.008-1
    recode 3.6-8
    recordproto 1.14.2-2
    redland 1:1.0.17-2
    reflector 2014.11-1
    reiserfsprogs 3.6.24-1
    renderproto 0.11.1-3
    resourceproto 1.2.0-3
    rest 0.7.93-1
    rhash 1.3.3-1
    rng-tools 5-3
    rpcbind 0.2.3-1
    rsync 3.1.1-2
    rtkit 0.11-5
    rtmpdump 20140918-2
    ruby 2.2.2-1
    s-nail 14.8.0-1
    sbc 1.3-1
    schroedinger 1.0.11-2
    scrnsaverproto 1.2.2-2
    sdcv 0.4.2-8
    sdl 1.2.15-7
    sdl_image 1.2.12-3
    sdl_mixer 1.2.12-4
    sdl_net 1.2.8-2
    sdl_ttf 2.0.11-3
    sed 4.2.2-3
    sg3_utils 1.40-1
    shadow 4.2.1-3
    shared-color-targets 0.1.5-1
    shared-mime-info 1.4-1
    sip 4.16.7-1
    slang 2.3.0-1
    smartmontools 6.3-2
    smbclient 4.2.1-1
    smpeg 0.4.5-1
    snappy 1.1.1-1
    sound-theme-freedesktop 0.8-2
    soundtouch 1.8.0-1
    spandsp 0.0.6-1
    speech-dispatcher 0.8.1-1
    speedtest-cli 0.3.1-1
    speex 1.2rc2-1
    speexdsp 1.2rc3-1
    spotify 0.9.17.1-1
    spotify-gnome-git 20141010-1
    sqlite 3.8.9-1
    startup-notification 0.12-4
    steam 1.0.0.49-3
    sudo 1.8.13-1
    suitesparse 4.4.4-1
    sysfsutils 2.1.0-9
    systemd 219-6
    systemd-sysvcompat 219-6
    t1lib 5.1.2-5
    taglib 1.9.1-1
    talloc 2.1.2-1
    tar 1.28-1
    tdb 1.3.4-1
    telepathy-glib 0.24.1-1
    telepathy-logger 0.8.1-1
    telepathy-mission-control 5.16.3-1
    terminology 0.8.0-1
    tevent 0.9.24-1
    texinfo 5.2-3
    texlive-bin 2014.34260-7
    texlive-core 2014.36709-1
    texlive-langchinese 2014.35921-1
    texlive-langcjk 2014.0-1
    texlive-langjapanese 2014.36466-1
    texlive-langkorean 2014.36573-1
    texlive-latexextra 2014.36706-1
    texlive-pictures 2014.36605-1
    texlive-science 2014.36659-1
    texmaker 4.4.1-1
    thin-provisioning-tools 0.4.1-1
    thunderbird 31.6.0-2
    tinyxml 2.6.2-3
    tmux 1.9_a-2
    totem-plparser 3.10.4-1
    transmission-gtk 2.84-1
    tsmuxer 1.10.6-14
    ttf-dejavu 2.34-2
    ttf-ms-fonts 2.0-10
    tzdata 2015d-1
    udisks2 2.1.5-1
    unrar 1:5.2.7-1
    unzip 6.0-10
    upower 0.99.2-2
    usbutils 008-1
    util-linux 2.26.1-3
    v4l-utils 1.6.2-1
    vi 1:050325-4
    videoproto 2.3.2-1
    vim 7.4.712-1
    vim-latexsuite 20130126-2
    vim-runtime 7.4.712-1
    vlc 2.2.1-2
    vte-common 0.40.0-2
    vte3 0.40.0-2
    wavpack 4.70.0-2
    wayland 1.7.0-1
    webkit2gtk 2.8.1-1
    webkitgtk 2.4.8-2
    webrtc-audio-processing 0.1-2
    wesnoth 1.12.2-2
    wesnoth-data 1.12.2-1
    wget 1.16.3-1
    which 2.21-1
    wildmidi 0.3.8-1
    wine 1.7.42-2
    winetricks 20141130-1
    wireless_tools 30.pre9-1
    wpa_supplicant 1:2.3-1
    wxgtk 3.0.2-4
    wxgtk2.8 2.8.12.1-3
    wxpython 3.0.2.0-1
    wxpython2.8 2.8.12.1-1
    x265 1.6-1
    xboxdrv 0.8.5-3
    xcb-proto 1.11-1
    xcb-util 0.4.0-1
    xcb-util-cursor 0.1.2-1
    xcb-util-image 0.4.0-1
    xcb-util-keysyms 0.4.0-1
    xcb-util-renderutil 0.3.9-1
    xcb-util-wm 0.4.1-1
    xdg-su 1.2.3-1
    xdg-utils 1.1.0.git20150323-1
    xdiskusage 1.51-1
    xextproto 7.3.0-1
    xf86-input-evdev 2.9.2-1
    xf86dgaproto 2.1-3
    xf86driproto 2.1.1-3
    xf86vidmodeproto 2.3.1-3
    xfsprogs 3.2.2-1
    xineramaproto 1.2.1-3
    xkeyboard-config 2.14-1
    xorg-appres 1.0.4-1
    xorg-bdftopcf 1.0.5-1
    xorg-font-util 1.3.1-1
    xorg-font-utils 7.6-4
    xorg-fonts-alias 1.0.3-1
    xorg-fonts-encodings 1.0.4-4
    xorg-fonts-misc 1.0.3-3
    xorg-iceauth 1.0.7-1
    xorg-mkfontdir 1.0.7-2
    xorg-mkfontscale 1.1.2-1
    xorg-server 1.17.1-5
    xorg-server-common 1.17.1-5
    xorg-server-devel 1.17.1-5
    xorg-server-utils 7.6-4
    xorg-sessreg 1.1.0-1
    xorg-setxkbmap 1.3.1-1
    xorg-util-macros 1.19.0-1
    xorg-xauth 1.0.9-1
    xorg-xbacklight 1.2.1-1
    xorg-xcmsdb 1.0.5-1
    xorg-xgamma 1.0.6-1
    xorg-xhost 1.0.7-1
    xorg-xinit 1.3.4-2
    xorg-xinput 1.6.1-1
    xorg-xkbcomp 1.3.0-1
    xorg-xmessage 1.0.4-2
    xorg-xmodmap 1.0.9-1
    xorg-xrandr 1.4.3-1
    xorg-xrdb 1.1.0-1
    xorg-xrefresh 1.0.5-1
    xorg-xset 1.2.3-1
    xorg-xsetroot 1.1.1-2
    xproto 7.0.27-1
    xscreensaver 5.32-1
    xvidcore 1.3.3-1
    xz 5.2.1-1
    yajl 2.1.0-1
    yaourt 1.5-1
    zenity 3.14.0-1
    zeromq 4.0.5-1
    zita-alsa-pcmi 0.2.0-2
    zita-resampler 1.3.0-3
    zlib 1.2.8-3
    zvbi 0.2.35-1
    zziplib 0.13.62-2
    [edit5] My /etc/modules-load.d directory is empty by the way, and "sudo /usr/lib/systemd/systemd-modules-load" returns nothing. Note, this is all while running Linux 3.19, but I believe it should demonstrate that I don't have any special modules running. Or so I believe.
    Last edited by nstgc (2015-05-04 13:16:09)

  • [SOLVED] No sound in some programs

    Recently, I don't know when or what has changed, I lost sound in a few programs.
    For example:
    Sound working in
    speaker-test -c 2
    mplayer
    mumble
    luakit
    not working
    chromium
    firefox
    warsow
    mpv
    So I started reading https://wiki.archlinux.org/index.php/Ad … m_problems and the mpv.conf ao=alsa fixed it for mpv. But there's nothing else there..
    And after searching the web for answers I tried figuring out what to put in my ~/.asoundrc or /etc/modprobe.d/alsa-base.conf ( I have never had anything in these files before when it was working but apparently this is what people use )
    $ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: MID [HDA Intel MID], device 0: VT1708S Analog [VT1708S Analog]
    Subdevices: 0/1
    Subdevice #0: subdevice #0
    card 0: MID [HDA Intel MID], device 3: VT1708S Digital [VT1708S Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: HDMI [HDA ATI HDMI], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    $ lspci -nn | grep -i audio
    00:1b.0 Audio device [0403]: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio [8086:3b56] (rev 05)
    01:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Juniper HDMI Audio [Radeon HD 5700 Series] [1002:aa58]
    What am I supposed to put in my ~/.asoundrc and/or /etc/modprobe.d/alsa-base.conf?
    I've tried a lot of combinations tonight but none that resulted in sound in all programs
    Last edited by rulex (2014-09-11 16:07:02)

    Yes, pulseaudio was installed and running... sound is now back everywhere after pacman -R pulseaudio and rebooting.
    Why was it installed though? There were only optional dependencies for it when uninstalling.
    $ cat /var/log/pacman.log
    [2014-09-09 17:46] [PACMAN] Running 'pacman -Syu'
    [2014-09-09 17:46] [PACMAN] synchronizing package lists
    [2014-09-09 17:46] [PACMAN] starting full system upgrade
    [2014-09-09 17:51] [PACMAN] upgraded aurora (34.0a2+20140907+g8a9db5d-1 -> 34.0a2+20140909+gf816f7e-1)
    [2014-09-09 17:52] [PACMAN] upgraded couchdb (1.6.0-1 -> 1.6.1-1)
    [2014-09-09 17:52] [PACMAN] upgraded dirmngr (1.1.1-2 -> 1.1.1-3)
    [2014-09-09 17:52] [PACMAN] upgraded filezilla (3.9.0.3-1 -> 3.9.0.5-1)
    [2014-09-09 17:52] [PACMAN] upgraded glib2 (2.40.0-1 -> 2.40.0-2)
    [2014-09-09 17:52] [ALPM-SCRIPTLET] Please make sure JAVA_HOME is set to /usr/lib/jvm/default
    [2014-09-09 17:52] [ALPM-SCRIPTLET] If not, you may have to logout and login again to set it according to /etc/profile.d/jre.sh
    [2014-09-09 17:52] [PACMAN] upgraded java-common (1-7 -> 1-8)
    [2014-09-09 17:52] [PACMAN] upgraded libwbclient (4.1.11-1 -> 4.1.12-1)
    [2014-09-09 17:52] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-09-09 17:52] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> Starting build: 3.16.2-1-ARCH
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [shutdown]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux.img
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> Starting build: 3.16.2-1-ARCH
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] -> Running build hook: [shutdown]
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-fallback.img
    [2014-09-09 17:52] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-09-09 17:52] [PACMAN] upgraded linux (3.16.1-1 -> 3.16.2-1)
    [2014-09-09 17:52] [PACMAN] upgraded linux-headers (3.16.1-1 -> 3.16.2-1)
    [2014-09-09 17:52] [PACMAN] upgraded llvm-libs (3.4.2-1 -> 3.5.0-1)
    [2014-09-09 17:52] [PACMAN] upgraded llvm (3.4.2-1 -> 3.5.0-1)
    [2014-09-09 17:52] [PACMAN] upgraded mesa (10.2.7-1 -> 10.2.7-2)
    [2014-09-09 17:52] [PACMAN] installed gst-plugins-base (1.4.1-1)
    [2014-09-09 17:52] [PACMAN] installed sbc (1.2-1)
    [2014-09-09 17:52] [PACMAN] installed pulseaudio (5.0-1)
    [2014-09-09 17:52] [PACMAN] upgraded phonon-qt4-gstreamer (4.7.2-1 -> 4.8.0-1)
    [2014-09-09 17:52] [PACMAN] upgraded phonon-qt4-vlc (0.7.2-1 -> 0.8.0-1)
    [2014-09-09 17:52] [PACMAN] upgraded phonon-qt4 (4.7.2-1 -> 4.8.0-1)
    [2014-09-09 17:52] [PACMAN] upgraded phonon-qt5-gstreamer (4.7.2-1 -> 4.8.0-1)
    [2014-09-09 17:52] [PACMAN] upgraded smbclient (4.1.11-1 -> 4.1.12-1)
    [2014-09-09 17:52] [PACMAN] upgraded samba (4.1.11-1 -> 4.1.12-1)
    [2014-09-09 17:52] [ALPM-SCRIPTLET] To start and/or enable syncthing execute the following,
    [2014-09-09 17:52] [ALPM-SCRIPTLET] replacing 'user' with your username.
    [2014-09-09 17:52] [ALPM-SCRIPTLET].
    [2014-09-09 17:52] [ALPM-SCRIPTLET] systemctl start syncthing@user
    [2014-09-09 17:52] [ALPM-SCRIPTLET] systemctl enable syncthing@user
    [2014-09-09 17:52] [PACMAN] upgraded syncthing (0.9.11-1 -> 0.9.13-1)
    [2014-09-09 17:52] [PACMAN] upgraded tzdata (2014f-1 -> 2014g-1)
    [2014-09-09 17:52] [PACMAN] upgraded upower (0.99.0-2 -> 0.99.0-3)

  • Intel GPU - OpenGL not working

    Hi guys,
    I've tried like everything I could find/think of I was able to get everything to work fine with the Nvidia (when I game I use this) but for some reason when I am using the Intel OpenGL just doesn't work...
    GPU's
    00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
    01:00.0 VGA compatible controller: NVIDIA Corporation GK107M [GeForce GT 650M] (rev ff)
    Xorg.0.log
    [ 27.497]
    X.Org X Server 1.15.2
    Release Date: 2014-06-27
    [ 27.497] X Protocol Version 11, Revision 0
    [ 27.497] Build Operating System: Linux 3.15.1-1-ARCH x86_64
    [ 27.497] Current Operating System: Linux bananas 3.15.5-2-ARCH #1 SMP PREEMPT Fri Jul 11 07:56:02 CEST 2014 x86_64
    [ 27.497] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=991fc256-24bc-4a42-87f9-5f032bc0da05 rw quiet rcutree.rcu_idle_gp_delay=1
    [ 27.497] Build Date: 27 June 2014 07:32:26PM
    [ 27.497]
    [ 27.497] Current version of pixman: 0.32.6
    [ 27.497] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 27.497] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 27.498] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Jul 27 22:08:43 2014
    [ 27.530] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 27.530] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 27.548] (==) No Layout section. Using the first Screen section.
    [ 27.549] (==) No screen section available. Using defaults.
    [ 27.549] (**) |-->Screen "Default Screen Section" (0)
    [ 27.549] (**) | |-->Monitor "<default monitor>"
    [ 27.549] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 27.549] (**) | |-->Device "Intel Graphics"
    [ 27.549] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 27.549] (==) Automatically adding devices
    [ 27.549] (==) Automatically enabling devices
    [ 27.549] (==) Automatically adding GPU devices
    [ 27.638] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 27.639] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 27.639] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 27.639] (II) Loader magic: 0x811cc0
    [ 27.639] (II) Module ABI versions:
    [ 27.639] X.Org ANSI C Emulation: 0.4
    [ 27.639] X.Org Video Driver: 15.0
    [ 27.639] X.Org XInput driver : 20.0
    [ 27.639] X.Org Server Extension : 8.0
    [ 27.639] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 27.641] (--) PCI:*(0:0:2:0) 8086:0166:1558:1550 rev 9, Mem @ 0xf7400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
    [ 27.641] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 27.641] Initializing built-in extension Generic Event Extension
    [ 27.641] Initializing built-in extension SHAPE
    [ 27.641] Initializing built-in extension MIT-SHM
    [ 27.641] Initializing built-in extension XInputExtension
    [ 27.641] Initializing built-in extension XTEST
    [ 27.641] Initializing built-in extension BIG-REQUESTS
    [ 27.641] Initializing built-in extension SYNC
    [ 27.641] Initializing built-in extension XKEYBOARD
    [ 27.641] Initializing built-in extension XC-MISC
    [ 27.642] Initializing built-in extension SECURITY
    [ 27.642] Initializing built-in extension XINERAMA
    [ 27.642] Initializing built-in extension XFIXES
    [ 27.642] Initializing built-in extension RENDER
    [ 27.642] Initializing built-in extension RANDR
    [ 27.642] Initializing built-in extension COMPOSITE
    [ 27.642] Initializing built-in extension DAMAGE
    [ 27.642] Initializing built-in extension MIT-SCREEN-SAVER
    [ 27.642] Initializing built-in extension DOUBLE-BUFFER
    [ 27.642] Initializing built-in extension RECORD
    [ 27.642] Initializing built-in extension DPMS
    [ 27.642] Initializing built-in extension Present
    [ 27.642] Initializing built-in extension DRI3
    [ 27.642] Initializing built-in extension X-Resource
    [ 27.642] Initializing built-in extension XVideo
    [ 27.642] Initializing built-in extension XVideo-MotionCompensation
    [ 27.642] Initializing built-in extension XFree86-VidModeExtension
    [ 27.642] Initializing built-in extension XFree86-DGA
    [ 27.642] Initializing built-in extension XFree86-DRI
    [ 27.642] Initializing built-in extension DRI2
    [ 27.642] (II) "glx" will be loaded by default.
    [ 27.642] (II) LoadModule: "dri2"
    [ 27.643] (II) Module "dri2" already built-in
    [ 27.643] (II) LoadModule: "glamoregl"
    [ 27.665] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 27.799] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 27.799] compiled for 1.15.0, module version = 0.6.0
    [ 27.799] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 27.799] (II) LoadModule: "glx"
    [ 27.799] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 27.809] (II) Module glx: vendor="X.Org Foundation"
    [ 27.809] compiled for 1.15.2, module version = 1.0.0
    [ 27.809] ABI class: X.Org Server Extension, version 8.0
    [ 27.809] (==) AIGLX enabled
    [ 27.809] Loading extension GLX
    [ 27.809] (II) LoadModule: "intel"
    [ 27.822] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 27.852] (II) Module intel: vendor="X.Org Foundation"
    [ 27.852] compiled for 1.15.2, module version = 2.99.912
    [ 27.852] Module class: X.Org Video Driver
    [ 27.852] ABI class: X.Org Video Driver, version 15.0
    [ 27.853] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 27.853] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    [ 27.853] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    [ 27.853] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    [ 27.853] (++) using VT number 1
    [ 27.854] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 27.854] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 27.854] (==) intel(0): RGB weight 888
    [ 27.854] (==) intel(0): Default visual is TrueColor
    [ 27.854] (**) intel(0): Option "AccelMethod" "glamor"
    [ 27.854] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
    [ 27.854] (**) intel(0): Relaxed fencing enabled
    [ 27.854] (**) intel(0): Wait on SwapBuffers? enabled
    [ 27.854] (**) intel(0): Triple buffering? enabled
    [ 27.854] (**) intel(0): Framebuffer tiled
    [ 27.854] (**) intel(0): Pixmaps tiled
    [ 27.854] (**) intel(0): 3D buffers tiled
    [ 27.854] (**) intel(0): SwapBuffers wait enabled
    [ 27.854] (==) intel(0): video overlay key set to 0x101fe
    [ 27.855] (II) intel(0): Output LVDS1 has no monitor section
    [ 27.855] (--) intel(0): found backlight control interface acpi_video0
    [ 27.856] (II) intel(0): Output VGA1 has no monitor section
    [ 27.856] (II) intel(0): Output HDMI1 has no monitor section
    [ 27.857] (II) intel(0): Output DP1 has no monitor section
    [ 27.857] (II) intel(0): EDID for output LVDS1
    [ 27.857] (II) intel(0): Manufacturer: CMO Model: 1720 Serial#: 0
    [ 27.857] (II) intel(0): Year: 2011 Week: 2
    [ 27.857] (II) intel(0): EDID Version: 1.3
    [ 27.857] (II) intel(0): Digital Display Input
    [ 27.857] (II) intel(0): Max Image Size [cm]: horiz.: 38 vert.: 21
    [ 27.857] (II) intel(0): Gamma: 2.20
    [ 27.857] (II) intel(0): No DPMS capabilities specified
    [ 27.857] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 27.857] (II) intel(0): First detailed timing is preferred mode
    [ 27.857] (II) intel(0): redX: 0.640 redY: 0.333 greenX: 0.303 greenY: 0.613
    [ 27.857] (II) intel(0): blueX: 0.154 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 27.857] (II) intel(0): Manufacturer's mask: 0
    [ 27.857] (II) intel(0): Supported detailed timing:
    [ 27.857] (II) intel(0): clock: 138.7 MHz Image Size: 382 x 215 mm
    [ 27.857] (II) intel(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 27.857] (II) intel(0): v_active: 1080 v_sync: 1083 v_sync_end 1088 v_blanking: 1111 v_border: 0
    [ 27.857] (II) intel(0): N173HGE-L11
    [ 27.857] (II) intel(0): CMO
    [ 27.857] (II) intel(0): N173HGE-L11
    [ 27.857] (II) intel(0): EDID (in hex):
    [ 27.857] (II) intel(0): 00ffffffffffff000daf201700000000
    [ 27.857] (II) intel(0): 02150103802615780ad895a3554d9d27
    [ 27.857] (II) intel(0): 0f505400000001010101010101010101
    [ 27.857] (II) intel(0): 0101010101012e3680a070381f403020
    [ 27.857] (II) intel(0): 35007ed710000018000000fe004e3137
    [ 27.857] (II) intel(0): 334847452d4c31310a20000000fe0043
    [ 27.857] (II) intel(0): 4d4f0a202020202020202020000000fe
    [ 27.857] (II) intel(0): 004e3137334847452d4c31310a20006e
    [ 27.857] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Printing probed modes for output LVDS1
    [ 27.857] (II) intel(0): Modeline "1920x1080"x60.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 27.857] (II) intel(0): Modeline "1400x1050"x60.0 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
    [ 27.857] (II) intel(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
    [ 27.857] (II) intel(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz d)
    [ 27.857] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
    [ 27.857] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
    [ 27.857] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
    [ 27.857] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
    [ 27.859] (II) intel(0): EDID for output VGA1
    [ 27.859] (II) intel(0): EDID for output HDMI1
    [ 27.859] (II) intel(0): EDID for output DP1
    [ 27.859] (II) intel(0): Output LVDS1 connected
    [ 27.859] (II) intel(0): Output VGA1 disconnected
    [ 27.859] (II) intel(0): Output HDMI1 disconnected
    [ 27.859] (II) intel(0): Output DP1 disconnected
    [ 27.859] (II) intel(0): Using exact sizes for initial modes
    [ 27.859] (II) intel(0): Output LVDS1 using initial mode 1920x1080
    [ 27.859] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 27.859] (II) intel(0): Kernel page flipping support detected, enabling
    [ 27.859] (==) intel(0): DPI set to (96, 96)
    [ 27.859] (II) Loading sub module "fb"
    [ 27.859] (II) LoadModule: "fb"
    [ 27.859] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 27.878] (II) Module fb: vendor="X.Org Foundation"
    [ 27.878] compiled for 1.15.2, module version = 1.0.0
    [ 27.878] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 27.878] (II) Loading sub module "glamoregl"
    [ 27.878] (II) LoadModule: "glamoregl"
    [ 27.878] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 27.878] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 27.878] compiled for 1.15.0, module version = 0.6.0
    [ 27.878] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 27.878] (II) glamor: OpenGL accelerated X.org driver based.
    [ 28.008] (II) glamor: EGL version 1.4 (DRI2):
    [ 28.077] (II) intel(0): glamor detected, initialising egl layer.
    [ 28.077] (II) Loading sub module "dri2"
    [ 28.077] (II) LoadModule: "dri2"
    [ 28.077] (II) Module "dri2" already built-in
    [ 28.077] (II) Loading sub module "dri3"
    [ 28.077] (II) LoadModule: "dri3"
    [ 28.078] (WW) Warning, couldn't open module dri3
    [ 28.078] (II) UnloadModule: "dri3"
    [ 28.078] (II) Unloading dri3
    [ 28.078] (EE) intel: Failed to load module "dri3" (module does not exist, 0)
    [ 28.078] (==) Depth 24 pixmap format is 32 bpp
    [ 28.078] (II) intel(0): Allocated new frame buffer 1920x1080 stride 7680, tiled
    [ 28.093] (II) UXA(0): Driver registered support for the following operations:
    [ 28.093] (II) solid
    [ 28.093] (II) copy
    [ 28.093] (II) composite (RENDER acceleration)
    [ 28.093] (II) put_image
    [ 28.093] (II) get_image
    [ 28.093] (II) intel(0): [DRI2] Setup complete
    [ 28.093] (II) intel(0): [DRI2] DRI driver: i965
    [ 28.093] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 28.093] (==) intel(0): Backing store enabled
    [ 28.093] (==) intel(0): Silken mouse enabled
    [ 28.093] (II) intel(0): Initializing HW Cursor
    [ 28.252] (II) intel(0): Use GLAMOR acceleration.
    [ 28.252] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 28.267] (==) intel(0): DPMS enabled
    [ 28.267] (==) intel(0): Intel XvMC decoder enabled
    [ 28.267] (II) intel(0): Set up textured video
    [ 28.267] (II) intel(0): Set up textured video using glamor
    [ 28.267] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 28.267] (II) intel(0): DRI2: Enabled
    [ 28.267] (II) intel(0): DRI3: Disabled
    [ 28.267] (==) intel(0): hotplug detection: "enabled"
    [ 28.276] (--) RandR disabled
    [ 28.292] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 28.292] (II) AIGLX: enabled GLX_ARB_create_context
    [ 28.292] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 28.292] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 28.292] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 28.292] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 28.292] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 28.292] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 28.292] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 28.292] (II) AIGLX: enabled GLX_ARB_create_context_robustness
    [ 28.292] (II) AIGLX: Loaded and initialized i965
    [ 28.292] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 28.294] (II) intel(0): Setting screen physical size to 508 x 285
    [ 28.778] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 28.778] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 28.778] (II) LoadModule: "evdev"
    [ 28.778] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 28.797] (II) Module evdev: vendor="X.Org Foundation"
    [ 28.797] compiled for 1.15.1, module version = 2.9.0
    [ 28.797] Module class: X.Org XInput Driver
    [ 28.797] ABI class: X.Org XInput driver, version 20.0
    [ 28.797] (II) Using input driver 'evdev' for 'Power Button'
    [ 28.797] (**) Power Button: always reports core events
    [ 28.797] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 28.797] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 28.797] (--) evdev: Power Button: Found keys
    [ 28.797] (II) evdev: Power Button: Configuring as keyboard
    [ 28.797] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 28.797] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 28.797] (**) Option "xkb_rules" "evdev"
    [ 28.797] (**) Option "xkb_model" "pc104"
    [ 28.797] (**) Option "xkb_layout" "us"
    [ 28.834] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
    [ 28.834] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 28.834] (II) Using input driver 'evdev' for 'Video Bus'
    [ 28.834] (**) Video Bus: always reports core events
    [ 28.834] (**) evdev: Video Bus: Device: "/dev/input/event5"
    [ 28.834] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 28.834] (--) evdev: Video Bus: Found keys
    [ 28.834] (II) evdev: Video Bus: Configuring as keyboard
    [ 28.834] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input5/event5"
    [ 28.834] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 28.834] (**) Option "xkb_rules" "evdev"
    [ 28.834] (**) Option "xkb_model" "pc104"
    [ 28.834] (**) Option "xkb_layout" "us"
    [ 28.835] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
    [ 28.835] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 28.835] (II) Using input driver 'evdev' for 'Video Bus'
    [ 28.835] (**) Video Bus: always reports core events
    [ 28.835] (**) evdev: Video Bus: Device: "/dev/input/event4"
    [ 28.835] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 28.835] (--) evdev: Video Bus: Found keys
    [ 28.835] (II) evdev: Video Bus: Configuring as keyboard
    [ 28.835] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1a/LNXVIDEO:00/input/input4/event4"
    [ 28.835] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 28.835] (**) Option "xkb_rules" "evdev"
    [ 28.835] (**) Option "xkb_model" "pc104"
    [ 28.835] (**) Option "xkb_layout" "us"
    [ 28.836] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 28.836] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 28.836] (II) Using input driver 'evdev' for 'Power Button'
    [ 28.836] (**) Power Button: always reports core events
    [ 28.836] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 28.836] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 28.836] (--) evdev: Power Button: Found keys
    [ 28.836] (II) evdev: Power Button: Configuring as keyboard
    [ 28.836] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
    [ 28.836] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
    [ 28.836] (**) Option "xkb_rules" "evdev"
    [ 28.836] (**) Option "xkb_model" "pc104"
    [ 28.836] (**) Option "xkb_layout" "us"
    [ 28.837] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
    [ 28.837] (II) No input driver specified, ignoring this device.
    [ 28.837] (II) This device may have been added with another device file.
    [ 28.837] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
    [ 28.837] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 28.837] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 28.837] (**) Sleep Button: always reports core events
    [ 28.837] (**) evdev: Sleep Button: Device: "/dev/input/event1"
    [ 28.837] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 28.837] (--) evdev: Sleep Button: Found keys
    [ 28.837] (II) evdev: Sleep Button: Configuring as keyboard
    [ 28.837] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
    [ 28.837] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 10)
    [ 28.837] (**) Option "xkb_rules" "evdev"
    [ 28.837] (**) Option "xkb_model" "pc104"
    [ 28.837] (**) Option "xkb_layout" "us"
    [ 28.838] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 28.838] (II) config/udev: Adding input device 2.4GHz 2way RF Receiver (/dev/input/event7)
    [ 28.838] (**) 2.4GHz 2way RF Receiver: Applying InputClass "evdev pointer catchall"
    [ 28.838] (**) 2.4GHz 2way RF Receiver: Applying InputClass "evdev keyboard catchall"
    [ 28.838] (II) Using input driver 'evdev' for '2.4GHz 2way RF Receiver'
    [ 28.838] (**) 2.4GHz 2way RF Receiver: always reports core events
    [ 28.838] (**) evdev: 2.4GHz 2way RF Receiver: Device: "/dev/input/event7"
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Vendor 0x1bcf Product 0x53e
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found 12 mouse buttons
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found scroll wheel(s)
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found relative axes
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found x and y relative axes
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found absolute axes
    [ 28.838] (II) evdev: 2.4GHz 2way RF Receiver: Forcing absolute x/y axes to exist.
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found keys
    [ 28.839] (II) evdev: 2.4GHz 2way RF Receiver: Configuring as mouse
    [ 28.839] (II) evdev: 2.4GHz 2way RF Receiver: Configuring as keyboard
    [ 28.839] (II) evdev: 2.4GHz 2way RF Receiver: Adding scrollwheel support
    [ 28.839] (**) evdev: 2.4GHz 2way RF Receiver: YAxisMapping: buttons 4 and 5
    [ 28.839] (**) evdev: 2.4GHz 2way RF Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 28.839] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:1BCF:053E.0001/input/input11/event7"
    [ 28.839] (II) XINPUT: Adding extended input device "2.4GHz 2way RF Receiver" (type: KEYBOARD, id 11)
    [ 28.839] (**) Option "xkb_rules" "evdev"
    [ 28.839] (**) Option "xkb_model" "pc104"
    [ 28.839] (**) Option "xkb_layout" "us"
    [ 28.839] (II) evdev: 2.4GHz 2way RF Receiver: initialized for relative axes.
    [ 28.839] (WW) evdev: 2.4GHz 2way RF Receiver: ignoring absolute axes.
    [ 28.839] (**) 2.4GHz 2way RF Receiver: (accel) keeping acceleration scheme 1
    [ 28.839] (**) 2.4GHz 2way RF Receiver: (accel) acceleration profile 0
    [ 28.839] (**) 2.4GHz 2way RF Receiver: (accel) acceleration factor: 2.000
    [ 28.839] (**) 2.4GHz 2way RF Receiver: (accel) acceleration threshold: 4
    [ 28.840] (II) config/udev: Adding input device 2.4GHz 2way RF Receiver (/dev/input/mouse0)
    [ 28.840] (II) No input driver specified, ignoring this device.
    [ 28.840] (II) This device may have been added with another device file.
    [ 28.840] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event9)
    [ 28.840] (II) No input driver specified, ignoring this device.
    [ 28.840] (II) This device may have been added with another device file.
    [ 28.840] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event10)
    [ 28.840] (II) No input driver specified, ignoring this device.
    [ 28.840] (II) This device may have been added with another device file.
    [ 28.841] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event11)
    [ 28.841] (II) No input driver specified, ignoring this device.
    [ 28.841] (II) This device may have been added with another device file.
    [ 28.841] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event12)
    [ 28.841] (II) No input driver specified, ignoring this device.
    [ 28.841] (II) This device may have been added with another device file.
    [ 28.841] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event13)
    [ 28.841] (II) No input driver specified, ignoring this device.
    [ 28.841] (II) This device may have been added with another device file.
    [ 28.842] (II) config/udev: Adding input device BisonCam, NB Pro (/dev/input/event15)
    [ 28.842] (**) BisonCam, NB Pro: Applying InputClass "evdev keyboard catchall"
    [ 28.842] (II) Using input driver 'evdev' for 'BisonCam, NB Pro'
    [ 28.842] (**) BisonCam, NB Pro: always reports core events
    [ 28.842] (**) evdev: BisonCam, NB Pro: Device: "/dev/input/event15"
    [ 28.842] (--) evdev: BisonCam, NB Pro: Vendor 0x5986 Product 0x401
    [ 28.842] (--) evdev: BisonCam, NB Pro: Found keys
    [ 28.842] (II) evdev: BisonCam, NB Pro: Configuring as keyboard
    [ 28.842] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.6/4-1.6:1.0/input/input22/event15"
    [ 28.842] (II) XINPUT: Adding extended input device "BisonCam, NB Pro" (type: KEYBOARD, id 12)
    [ 28.842] (**) Option "xkb_rules" "evdev"
    [ 28.842] (**) Option "xkb_model" "pc104"
    [ 28.842] (**) Option "xkb_layout" "us"
    [ 28.843] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event6)
    [ 28.843] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 28.843] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 28.843] (**) AT Translated Set 2 keyboard: always reports core events
    [ 28.843] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event6"
    [ 28.843] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 28.843] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 28.843] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 28.843] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input6/event6"
    [ 28.843] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 13)
    [ 28.843] (**) Option "xkb_rules" "evdev"
    [ 28.843] (**) Option "xkb_model" "pc104"
    [ 28.843] (**) Option "xkb_layout" "us"
    [ 28.844] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event14)
    [ 28.844] (**) ETPS/2 Elantech Touchpad: Applying InputClass "evdev touchpad catchall"
    [ 28.844] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
    [ 28.844] (**) ETPS/2 Elantech Touchpad: Applying InputClass "Default clickpad buttons"
    [ 28.844] (II) LoadModule: "synaptics"
    [ 28.844] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 28.853] (II) Module synaptics: vendor="X.Org Foundation"
    [ 28.853] compiled for 1.15.1, module version = 1.8.0
    [ 28.853] Module class: X.Org XInput Driver
    [ 28.853] ABI class: X.Org XInput driver, version 20.0
    [ 28.853] (II) Using input driver 'synaptics' for 'ETPS/2 Elantech Touchpad'
    [ 28.853] (**) ETPS/2 Elantech Touchpad: always reports core events
    [ 28.853] (**) Option "Device" "/dev/input/event14"
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: x-axis range 0 - 2436 (res 0)
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: y-axis range 0 - 1044 (res 0)
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: pressure range 0 - 255
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: finger width range 0 - 15
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: buttons: left right double triple
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: Vendor 0x2 Product 0xe
    [ 28.910] (**) Option "TapButton1" "1"
    [ 28.910] (**) Option "TapButton2" "2"
    [ 28.910] (**) Option "TapButton3" "3"
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [ 28.910] (**) ETPS/2 Elantech Touchpad: always reports core events
    [ 28.936] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input14/event14"
    [ 28.936] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD, id 14)
    [ 28.936] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MinSpeed is now constant deceleration 2.5
    [ 28.936] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MaxSpeed is now 1.75
    [ 28.937] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) AccelFactor is now 0.075
    [ 28.937] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
    [ 28.937] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 1
    [ 28.937] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
    [ 28.937] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
    [ 28.937] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [ 28.937] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse1)
    [ 28.938] (**) ETPS/2 Elantech Touchpad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 28.938] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
    [ 28.938] (II) No input driver specified, ignoring this device.
    [ 28.938] (II) This device may have been added with another device file.
    [ 41.685] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 42.486] (II) intel(0): Printing DDC gathered Modelines:
    [ 42.486] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 62.731] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 62.731] (II) intel(0): Printing DDC gathered Modelines:
    [ 62.731] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 62.734] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 62.734] (II) intel(0): Printing DDC gathered Modelines:
    [ 62.734] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 63.746] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 63.746] (II) intel(0): Printing DDC gathered Modelines:
    [ 63.746] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 63.748] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 63.748] (II) intel(0): Printing DDC gathered Modelines:
    [ 63.748] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 64.053] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 64.053] (II) intel(0): Printing DDC gathered Modelines:
    [ 64.053] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 64.055] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 64.055] (II) intel(0): Printing DDC gathered Modelines:
    [ 64.055] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 64.654] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 64.654] (II) intel(0): Printing DDC gathered Modelines:
    [ 64.654] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    pacman -Q
    a52dec 0.7.4-8
    aalib 1.4rc5-10
    abs 2.4.4-2
    acetoneiso2 2.3-6
    acl 2.2.52-2
    advancecomp 1.19-3
    akonadi 1.12.1-2
    al-anvar 0.6.0-2
    alsa-lib 1.0.28-1
    alsa-plugins 1.0.28-1
    alsa-utils 1.0.28-1
    apache 2.4.10-1
    apr 1.5.1-1
    apr-util 1.5.3-4
    archlinux-keyring 20140220-1
    arista 0.9.7-8
    art-sharp 2.24.2-4
    aspell 0.60.6.1-2
    aspell-en 7.1-3
    at-spi2-atk 2.12.1-1
    at-spi2-core 2.12.0-1
    atk 2.12.0-1
    atkmm 2.22.7-1
    attica 0.4.2-1
    attica-qt5 5.0.0-1
    attr 2.4.47-1
    aura-bin 1.2.3.4-1
    autoconf 2.69-2
    automake 1.14.1-1
    automake-1.11 1.11.6-2
    automoc4 0.9.88-5
    avahi 0.6.31-12
    babl 0.1.10-2
    bash 4.3.018-3
    bash-completion 2.1-5
    bbswitch 0.8-12
    bc 1.06.95-1
    binutils 2.24-6
    bison 3.0.2-1
    boost 1.55.0-6
    boost-libs 1.55.0-6
    brasero 3.11.3-1
    bumblebee 3.2.1-3
    burpsuite 1.6-2
    bzip2 1.0.6-5
    bzr 2.6.0-1
    ca-certificates 20140325-1
    ca-certificates-java 20140324-3
    cabextract 1.4-2
    cairo 1.12.16-2
    cairo-perl 1.104-2
    cairomm 1.10.0-3
    cantarell-fonts 0.0.15-1
    cdparanoia 10.2-5
    cdrdao 1.2.3-7
    cdrkit 1.1.11-3
    celt 0.11.3-2
    chromaprint 1.1-1
    chromium 36.0.1985.125-1
    chromo-erectus-icon-themes 1.2-1
    cifs-utils 6.3-2
    clementine 1.2.3-1
    clipit-git 20120506-1
    cln 1.3.3-2
    cloog 0.18.1-3
    clucene 2.3.3.4-8
    cmake 3.0.0-3
    colord 1.2.1-1
    compiz-core-bzr 3874-9
    compositeproto 0.4.2-3
    coreutils 8.23-1
    cracklib 2.9.0-2
    cratos-lion-icons 2.0-3
    cryptsetup 1.6.5-1
    cups 1.7.4-1
    cups-filters 1.0.54-1
    curl 7.37.1-1
    damageproto 1.2.1-3
    db 5.3.28-1
    dbus 1.8.6-1
    dbus-glib 0.102-1
    dbus-sharp 0.7.0-5
    dbus-sharp-glib 0.5.0-5
    dconf 0.20.0-1
    debootstrap 1.0.60~bpo70+1-1
    desktop-file-utils 0.22-1
    device-mapper 2.02.106-2
    dhcpcd 6.4.2-1
    dialog 1:1.2_20140219-1
    diffutils 3.3-2
    dirmngr 1.1.1-2
    djvulibre 3.5.25.3-2
    dkms 2.2.0.3-14
    dmg2img 1.6.5-3
    dmxproto 2.3.1-3
    dnssec-anchors 20140629-1
    dnsutils 9.9.2.P2-2
    docbook-xml 4.5-6
    docbook-xsl 1.78.1-1
    docky 2.2.0-1
    dosbox 0.74-6
    dosfstools 3.0.26-1
    dotconf 1.3-4
    doxygen 1.8.7-1
    dri2proto 2.8-2
    dri3proto 1.0-1
    dvd+rw-tools 7.1-5
    e2fsprogs 1.42.10-1
    eigen 3.2.1-1
    elementary-icon-theme 3.1-4
    elfutils 0.159-1
    emerald-themes 0.6.0-4
    emerald0.9 0.9.5-9
    enca 1.15-1
    enchant 1.6.0-5
    evince 3.12.1-1
    evolution 3.12.4-1
    evolution-data-server 3.12.4-1
    evolution-ews 3.12.4-1
    evolution-tray-arch 20130317-1
    exempi 2.2.1-2
    exiv2 0.24-1
    exo 0.10.2-2
    expac 3-1
    expat 2.1.0-3
    ext3grep 0.10.2-3
    extundelete 0.2.4-2
    faac 1.28-5
    faad2 2.7-4
    faenza-icon-theme 1.3.1-3
    faience-icon-theme 0.5.1-3
    fakeroot 1.20-1
    farstream-0.1 0.1.2-4
    ffmpeg 1:2.3-1
    ffmpeg-compat 1:0.10.13-1
    fftw 3.3.4-1
    file 5.19-1
    file-roller 3.12.2-1
    filesystem 2014.07-1
    filezilla 3.8.1-1
    finch 2.10.9-2
    findmyhash 1.1.2-3
    findutils 4.4.2-6
    firefox 31.0-1
    fixesproto 5.0-3
    flac 1.3.0-3
    flashplugin 11.2.202.394-1
    flex 2.5.39-1
    fluidsynth 1.1.6-3
    fondu 060102-4
    font-misc-ethiopic 1.0.3-1
    fontconfig 2.11.1-1
    fontconfig-infinality-git 101.91eb8e6-1
    fontforge 20140101-3
    fontsproto 2.1.3-1
    freeglut 2.8.1-1
    freerdp-git 1.2.0.beta1.android7.r108.g9e1793c-1
    freetype2-infinality 2.4.12-2
    frei0r-plugins 1.4-2
    fribidi 0.19.6-1
    fuse 2.9.3-2
    fuse-exfat 1.1.0-1
    fuseiso 20070708-5
    gamin 0.1.10-8
    garcon 0.2.1-1
    gavl 1.4.0-2
    gawk 4.1.1-1
    gc 7.4.2-1
    gcc-libs-multilib 4.9.1-1
    gcc-multilib 4.9.1-1
    gconf 3.2.6-3
    gconf-editor 3.0.1-3
    gconf-perl 1.044-9
    gconf-sharp 2.24.2-4
    gconf-sharp-peditors 2.24.2-4
    gcr 3.12.2-1
    gd 2.1.0-2
    gdb 7.7.1-1
    gdbm 1.11-1
    gdk-pixbuf2 2.30.8-1
    gegl 0.2.0-11
    gendesk 0.6.2-1
    geoclue2 2.1.8-2
    gettext 0.19.1-1
    gggooglescan 0.4-1
    ghostscript 9.14-1
    giflib 5.1.0-1
    gimp 2.8.10-1
    gio-sharp 0.3-2
    git 2.0.3-1
    gkeyfile-sharp 0.1-3
    gksu 2.0.2-5
    glamor-egl 0.6.0-1
    glew 1.10.0-2
    glib-networking 2.40.1-1
    glib-perl 1.305-1
    glib2 2.40.0-1
    glibc 2.19-5
    glibmm 2.40.0-1
    glproto 1.4.17-1
    glu 9.0.0-3
    gmime 2.6.20-2
    gmp 6.0.0-1
    gnome-calculator 3.12.3-1
    gnome-common 3.12.0-1
    gnome-desktop 1:3.12.2-1
    gnome-desktop2 2.32.1-3
    gnome-doc-utils 0.20.10-2
    gnome-icon-theme 3.12.0-2
    gnome-icon-theme-symbolic 3.12.0-2
    gnome-keyring 3.12.2-1
    gnome-keyring-sharp 1.0.2-5
    gnome-mime-data 2.18.0-7
    gnome-online-accounts 3.12.3-1
    gnome-perl 1.045-2
    gnome-screensaver 3.6.1-8
    gnome-sharp 2.24.2-4
    gnome-themes-standard 3.12.0-1
    gnome-vfs 2.24.4-8
    gnome-vfs-perl 1.082-2
    gnome-vfs-sharp 2.24.2-4
    gnomecanvas-perl 1.002-12
    gnu-netcat 0.7.1-5
    gnupg 2.0.25-1
    gnutls 3.3.6-1
    gobject-introspection 1.40.0-1
    goocanvas1 1.0.0-3
    gparted-git 0.19.0.4.g0fcfd18-1
    gpgme 1.5.0-1
    gpm 1.20.7-4
    grantlee 0.4.0-1
    graphite 1:1.2.4-1
    graphviz 2.36.0-3
    grep 2.20-1
    groff 1.22.2-6
    grub 1:2.02.beta2-4
    gsettings-desktop-schemas 3.12.2-1
    gsfonts 1.0.7pre44-4
    gsm 1.0.13-7
    gst-plugins-bad 1.4.0-1
    gst-plugins-base 1.4.0-1
    gst-plugins-base-libs 1.4.0-1
    gst-plugins-good 1.4.0-1
    gst-plugins-ugly 1.4.0-1
    gstreamer 1.4.0-1
    gstreamer0.10 0.10.36-4
    gstreamer0.10-bad 0.10.23-8
    gstreamer0.10-bad-plugins 0.10.23-8
    gstreamer0.10-base 0.10.36-3
    gstreamer0.10-base-plugins 0.10.36-3
    gstreamer0.10-ffmpeg 0.10.13-2
    gstreamer0.10-good 0.10.31-6
    gstreamer0.10-good-plugins 0.10.31-6
    gstreamer0.10-python 0.10.22-2
    gstreamer0.10-ugly 0.10.19-11
    gstreamer0.10-ugly-plugins 0.10.19-11
    gtest 1.7.0-1
    gtk-doc 1.20-1
    gtk-engines 2.21.0-2
    gtk-recordmydesktop 0.3.8-7
    gtk-sharp-2 2.12.22-1
    gtk-update-icon-cache 2.24.24-1
    gtk2 2.24.24-1
    gtk2-perl 1.2492-1
    gtk2-xfce-engine 3.0.1-2
    gtk3 3.12.2-1
    gtk3-xfce-engine 3.0.1-2
    gtkglext 1.2.0-10
    gtkhtml4 4.8.3-1
    gtkimageview 1.6.4-4
    gtkmm 2.24.4-1
    gtkmm3 3.12.0-1
    gtksourceview3 3.12.2-1
    gtkspell 2.0.16-3
    gtkspell3 3.0.6-1
    gts 0.7.6-3
    guifications 2.16-3
    guile 2.0.11-1
    gvfs 1.20.2-1
    gzip 1.6-1
    harfbuzz 0.9.32-1
    harfbuzz-icu 0.9.32-1
    hash-identifier 1.1-2
    hashcat 0.47-2
    hicolor-icon-theme 0.13-1
    hspell 1.2-2
    htop-blueweb 1.0.3-1
    hunspell 1.3.3-1
    hunspell-en-base 7.1-2
    hwids 20140602-1
    hyphen 2.8.7-2
    iana-etc 2.30-4
    icu 53.1-1
    id3 0.78-4
    idnkit 1.0-3
    ilmbase 2.1.0-1
    imagemagick 6.8.9.5-1
    imlib2 1.4.6-3
    inetutils 1.9.2-1
    iniparser 3.1-4
    inputproto 2.3.1-1
    intel-dri 10.2.4-1
    intel-tbb 4.2_20140601-1
    intltool 0.50.2-2
    iphoneanalyzer 2.1.0-1
    iproute2 3.14.0-1
    iptables 1.4.21-1
    iputils 20121221-3
    ipw2200-fw 3.1-5
    isl 0.13-1
    iso-codes 3.52-1
    jack 0.124.1-1
    jansson 2.6-1
    jasper 1.900.1-10
    jdk7-openjdk 7.u65_2.5.1-3
    jfsutils 1.1.15-4
    jpegoptim 1.4.1-1
    jre7-openjdk 7.u65_2.5.1-3
    jre7-openjdk-headless 7.u65_2.5.1-3
    js17 17.0.0-1
    jshon 20131105-1
    json-c 0.12-2
    json-glib 1.0.2-1
    jynx2 2.0-1
    kactivities-frameworks 5.0.0-1
    karchive 5.0.0-1
    kauth 5.0.0-1
    kbd 2.0.1-1
    kbookmarks 5.0.0-1
    kbproto 1.0.6-2
    kcodecs 5.0.0-1
    kcompletion 5.0.0-1
    kconfig 5.0.0-1
    kconfigwidgets 5.0.0-1
    kcoreaddons 5.0.0-1
    kcrash 5.0.0-1
    kdbusaddons 5.0.0-1
    kde-base-artwork 4.13.3-1
    kdebase-runtime 4.13.3-1
    kdebase-workspace 4.11.11-1
    kdelibs 4.13.3-1
    kdenlive-git v0.9.8.r28.g190f218-1
    kdepim-runtime 4.13.3-1
    kdepimlibs 4.13.3-1
    keyutils 1.5.9-1
    kglobalaccel 5.0.0-1
    kguiaddons 5.0.0-1
    ki18n 5.0.0-1
    kiconthemes 5.0.0-1
    kio 5.0.0-1
    kitemviews 5.0.0-1
    kjobwidgets 5.0.0-1
    kmod 18-1
    knotifications 5.0.0-1
    krb5 1.12.1-1
    kservice 5.0.0-1
    ktextwidgets 5.0.0-1
    kwallet 5.0.0-1
    kwidgetsaddons 5.0.0-1
    kwindowsystem 5.0.0-1
    kxmlgui 5.0.0-1
    ladspa 1.13-5
    lame 3.99.5-2
    lcms 1.19-5
    lcms2 2.6-1
    ldb 1.1.16-1
    ldns 1.6.17-1
    less 458-1
    lib32-acl 2.2.52-2
    lib32-alsa-lib 1.0.28-1
    lib32-alsa-plugins 1.0.28-1
    lib32-atk 2.12.0-1
    lib32-attr 2.4.47-1
    lib32-bzip2 1.0.6-2
    lib32-cairo 1.12.16-1
    lib32-db 5.3.28-1
    lib32-e2fsprogs 1.42.11-1
    lib32-elfutils 0.159-1
    lib32-expat 2.1.0-2
    lib32-flac 1.3.0-1
    lib32-fontconfig 2.11.1-1
    lib32-freeglut 2.8.1-1
    lib32-freetype2 2.5.3-1
    lib32-gcc-libs 4.9.1-1
    lib32-gdk-pixbuf2 2.30.8-1
    lib32-gettext 0.19.1-1
    lib32-giflib 5.1.0-1
    lib32-glew 1.10.0-1
    lib32-glib2 2.40.0-1
    lib32-glibc 2.19-5
    lib32-glu 9.0.0-2
    lib32-gmp 6.0.0-1
    lib32-gnutls 3.3.6-1
    lib32-gstreamer0.10 0.10.36-3
    lib32-gstreamer0.10-base 0.10.36-5
    lib32-gtk2 2.24.24-1
    lib32-harfbuzz 0.9.32-1
    lib32-icu 53.1-1
    lib32-intel-dri 10.2.4-1
    lib32-jack 0.124.1-1
    lib32-json-c 0.12-1
    lib32-keyutils 1.5.9-1
    lib32-krb5 1.12.1-1
    lib32-lcms2 2.6-1
    lib32-libaio 0.3.109-6
    lib32-libao 1.2.0-1
    lib32-libasyncns 0.8-7
    lib32-libcanberra 0.30-4
    lib32-libcap 2.24-1
    lib32-libcl 1.1-1
    lib32-libcups 1.7.4-1
    lib32-libdbus 1.8.6-1
    lib32-libdrm 2.4.54-1
    lib32-libffi 3.1-1
    lib32-libgcrypt 1.6.1-1
    lib32-libgpg-error 1.13-1
    lib32-libice 1.0.9-1
    lib32-libjpeg-turbo 1.3.1-1
    lib32-libldap 2.4.39-1
    lib32-libltdl 2.4.2-14
    lib32-libmng 2.0.2-1
    lib32-libogg 1.3.1-1
    lib32-libpciaccess 0.13.2-1
    lib32-libpng 1.6.12-1
    lib32-libpulse 5.0-1
    lib32-libsamplerate 0.1.8-2
    lib32-libsm 1.2.2-1
    lib32-libsndfile 1.0.25-3
    lib32-libtasn1 3.6-1
    lib32-libtiff 4.0.3-2
    lib32-libtxc_dxtn 1.0.1-5
    lib32-libvdpau 0.8-1
    lib32-libvorbis 1.3.4-1
    lib32-libx11 1.6.2-1
    lib32-libxau 1.0.8-1
    lib32-libxcb 1.10-3
    lib32-libxcomposite 0.4.4-2
    lib32-libxcursor 1.1.14-1
    lib32-libxdamage 1.1.4-2
    lib32-libxdmcp 1.1.1-2
    lib32-libxext 1.3.3-1
    lib32-libxfixes 5.0.1-1
    lib32-libxft 2.3.2-1
    lib32-libxi 1.7.4-1
    lib32-libxinerama 1.1.3-1
    lib32-libxml2 2.9.1-1
    lib32-libxmu 1.1.2-1
    lib32-libxrandr 1.4.2-1
    lib32-libxrender 0.9.8-1
    lib32-libxshmfence 1.1-1
    lib32-libxslt 1.1.28-2
    lib32-libxss 1.2.2-2
    lib32-libxt 1.1.4-1
    lib32-libxtst 1.2.2-1
    lib32-libxv 1.0.10-1
    lib32-libxxf86vm 1.1.3-1
    lib32-llvm-libs 3.4.2-1
    lib32-mesa 10.2.4-1
    lib32-mesa-libgl 10.2.4-1
    lib32-mpg123 1.20.0-1
    lib32-ncurses 5.9-3
    lib32-nettle 2.7.1-1
    lib32-nouveau-dri 10.2.4-1
    lib32-nvidia-cg-toolkit 3.1-4
    lib32-nvidia-utils 340.24-1
    lib32-openal 1.15.1-2
    lib32-openssl 1.0.1.h-1
    lib32-orc 0.4.19-1
    lib32-p11-kit 0.20.2-1
    lib32-pango 1.36.5-1
    lib32-pcre 8.35-1
    lib32-pixman 0.32.6-1
    lib32-portaudio 19_20140130-1
    lib32-qt4 4.8.6-1
    lib32-readline 6.3.006-1
    lib32-sdl 1.2.15-6
    lib32-soundtouch 1.8.0-1
    lib32-sqlite 3.8.5-1
    lib32-systemd 215-1
    lib32-tdb 1.2.12-1
    lib32-util-linux 2.24.2-1
    lib32-v4l-utils 1.2.1-1
    lib32-wayland 1.5.0-1
    lib32-wxgtk2.8 2.8.12.1-2
    lib32-xz 5.0.5-1
    lib32-zlib 1.2.8-1
    libaio 0.3.109-7
    libao 1.2.0-1
    libappindicator 12.10.0-2
    libarchive 3.1.2-6
    libart-lgpl 2.3.21-3
    libass 0.11.2-1
    libassuan 2.1.1-1
    libasyncns 0.8-5
    libatasmart 0.19-3
    libatomic_ops 7.4.2-1
    libavc1394 0.5.4-2
    libbluray 0.5.0-1
    libbonobo 2.32.1-4
    libbonoboui 2.24.5-2
    libbsd 0.6.0-2
    libburn 1.3.8-1
    libcaca 0.99.beta18-2
    libcanberra 0.30-4
    libcanberra-pulse 0.30-4
    libcap 2.24-1
    libcap-ng 0.7.4-1
    libcdaudio 0.99.12-7
    libcddb 1.3.2-4
    libcdio 0.92-1
    libcdio-paranoia 10.2+0.90+1-2
    libcl 1.1-4
    libcroco 0.6.8-2
    libcups 1.7.4-1
    libdaemon 0.14-3
    libdatrie 0.2.6-1
    libdbus 1.8.6-1
    libdbusmenu-glib 12.10.2-3
    libdbusmenu-gtk2 12.10.2-3
    libdbusmenu-qt 0.9.2-3
    libdbusmenu-qt5 0.9.3+14.10.20140619-1
    libdc1394 2.2.1-2
    libdca 0.0.5-4
    libdmtx 0.7.4-5
    libdmx 1.1.3-1
    libdrm 2.4.54-1
    libdv 1.0.0-6
    libdvbpsi 1:1.1.2-1
    libdvdnav 4.2.1-1
    libdvdread 4.9.9-1
    libebml 1.3.0-2
    libedit 20140213_3.1-1
    libepoxy 1.2-3
    libevdev 1.2.2-1
    libevent 2.0.21-3
    libexif 0.6.21-2
    libffi 3.1-2
    libfontenc 1.1.2-1
    libftdi-compat 0.20-1
    libgcrypt 1.6.1-1
    libgcrypt15 1.5.3-1
    libgdata 0.15.1-1
    libgdiplus 2.10.9-5
    libgksu 2.0.12-6
    libglade 2.6.4-5
    libgme 0.6.0-3
    libgnome 2.32.1-5
    libgnome-data 2.32.1-5
    libgnome-desktop-sharp 2.26.0-10
    libgnome-keyring 3.12.0-1
    libgnome-sharp 2.24.2-4
    libgnomecanvas 2.30.3-3
    libgnomekbd 3.6.0-2
    libgnomeui 2.24.5-2
    libgpg-error 1.13-1
    libgpod 0.8.3-2
    libgsf 1.14.30-1
    libgssglue 0.4-2
    libgtop 2.30.0-1
    libgusb 0.1.6-1
    libgweather 3.12.2-1
    libgxps 0.2.2-3
    libical 1.0-3
    libice 1.0.9-1
    libid3tag 0.15.1b-8
    libidl2 0.8.14-3
    libidn 1.28-2
    libiec61883 1.2.0-4
    libimobiledevice 1.1.6-1
    libindicator-gtk2 12.10.1-4
    libindicator-gtk3 12.10.1-4
    libirman 0.4.5-4
    libisofs 1.3.8-1
    libjpeg-turbo 1.3.1-1
    libkactivities4 4.13.3-1
    libkate 0.4.1-4
    libkeybinder2 0.3.0-2
    libkfbapi 1.0-1
    libkgapi 2.1.1-1
    libkolab 0.5.0-1
    libkolabxml 1.0.1-1
    libksba 1.3.0-1
    liblastfm 1.0.8-1
    libldap 2.4.39-1
    liblqr 0.4.2-1
    liblrdf 0.5.0-2
    libltdl 2.4.2-14
    libmad 0.15.1b-7
    libmariadbclient 10.0.12-2
    libmatroska 1.4.1-1
    libmikmod 3.3.6-1
    libmm-glib 1.2.0-4
    libmms 0.6.4-1
    libmng 2.0.2-3
    libmodplug 0.8.8.5-1
    libmp4v2 2.0.0-3
    libmpc 1.0.2-2
    libmpcdec 1.2.6-4
    libmpeg2 0.5.1-5
    libmspack 0.4alpha-1
    libmtp 1.1.6-6
    libmygpo-qt 1.0.7-1
    libnautilus-extension 3.12.2-1
    libnice 0.1.4-1
    libnl 3.2.24-1
    libnm-glib 0.9.8.10-3
    libnotify 0.7.6-1
    liboauth 1.0.3-1
    libofa 0.9.3-5
    libogg 1.3.1-2
    libomxil-bellagio 0.9.3-1
    libotr 4.0.0-5
    libpaper 1.1.24-7
    libpcap 1.5.3-1
    libpciaccess 0.13.2-2
    libpipeline 1.3.0-1
    libplist 1.11-1
    libpng 1.6.12-1
    libproxy 0.4.11-4
    libpst 0.6.63-1
    libpulse 5.0-1
    libpurple 2.10.9-2
    libqalculate 0.9.7-4
    libqzeitgeist 0.8.0-4
    libraw1394 2.1.0-2
    libreoffice-af 4.2.5-1
    libreoffice-base 4.2.5-1
    libreoffice-calc 4.2.5-1
    libreoffice-common 4.2.5-1
    libreoffice-draw 4.2.5-1
    libreoffice-en-US 4.2.5-1
    libreoffice-gnome 4.2.5-1
    libreoffice-impress 4.2.5-1
    libreoffice-kde4 4.2.5-1
    libreoffice-math 4.2.5-1
    libreoffice-postgresql-connector 4.2.5-1
    libreoffice-sdk 4.2.5-1
    libreoffice-sdk-doc 4.2.5-1
    libreoffice-writer 4.2.5-1
    librsvg 1:2.40.2-1
    libsamplerate 0.1.8-3
    libsasl 2.1.26-7
    libseccomp 2.1.1-1
    libsecret 0.18-1
    libshout 1:2.3.1-2
    libsidplay 1.36.59-6
    libsigc++ 2.3.1-2
    libsm 1.2.2-2
    libsndfile 1.0.25-3
    libsodium 0.6.1-1
    libsoup 2.46.0-1
    libspectre 0.2.7-2
    libspiro 1:0.2-1
    libsrtp 15.1c9bd90-3
    libssh 0.6.3-1
    libssh2 1.4.3-2
    libsystemd 215-4
    libtar 1.2.20-1
    libtasn1 4.0-1
    libthai 0.1.19-1
    libtheora 1.1.1-3
    libtiff 4.0.3-4
    libtiger 0.3.4-4
    libtirpc 0.2.4-1
    libtool 2.4.2-14
    libtracker-sparql 1.0.2-1
    libturpial-git 1.7.0.564.c3ec1dc-1
    libtxc_dxtn 1.0.1-5
    libunicodenames 1.1.0_beta1-1
    libunique 1.1.6-6
    libunistring 0.9.3-6
    libupnp 1.6.19-1
    libusb 1.0.19-1
    libusb-compat 0.1.5-1
    libusbmuxd 1.0.9-1
    libutempter 1.1.6-2
    libutil-linux 2.24.2-1
    libva 1.3.1-2
    libvdpau 0.8-1
    libvisual 0.4.0-5
    libvncserver 0.9.9-3
    libvorbis 1.3.4-1
    libvpx 1.3.0-1
    libwbclient 4.1.9-1
    libwebp 0.4.0-2
    libwmf 0.2.8.4-12
    libwnck 2.30.7-2
    libx11 1.6.2-2
    libx264 1:142.20140311-4
    libxau 1.0.8-2
    libxaw 1.0.12-1
    libxcb 1.10-3
    libxcomposite 0.4.4-2
    libxcursor 1.1.14-2
    libxdamage 1.1.4-2
    libxdmcp 1.1.1-2
    libxext 1.3.3-1
    libxfce4ui 4.10.0-2
    libxfce4util 4.10.1-2
    libxfcegui4 4.10.0-2
    libxfixes 5.0.1-1
    libxfont 1.4.7-3
    libxft 2.3.2-1
    libxi 1.7.4-1
    libxinerama 1.1.3-2
    libxkbcommon 0.4.2-1
    libxkbcommon-x11 0.4.2-1
    libxkbfile 1.0.8-2
    libxkbui 1.0.2-5
    libxklavier 5.4-1
    libxml-perl 0.08-6
    libxml2 2.9.1-5
    libxmu 1.1.2-1
    libxpm 3.5.11-1
    libxrandr 1.4.2-2
    libxrender 0.9.8-1
    libxres 1.0.7-1
    libxshmfence 1.1-1
    libxslt 1.1.28-3
    libxss 1.2.2-2
    libxt 1.1.4-1
    libxtst 1.2.2-1
    libxv 1.0.10-1
    libxvmc 1.0.8-1
    libxxf86dga 1.1.4-1
    libxxf86vm 1.1.3-1
    libyaml 0.1.6-1
    libytnef 1.5-4
    licenses 20140629-1
    links 2.8-1
    linux 3.15.5-2
    linux-api-headers 3.14.1-1
    linux-firmware 20140603.a4f3bc0-1
    linux-headers 3.15.5-2
    lirc-utils 1:0.9.0-74
    live-usb-install 2.5.2-2
    llvm-libs 3.4.2-1
    lm_sensors 3.3.5-1
    logrotate 3.8.7-3
    lpsolve 5.5.2.0-3
    lsof 4.87-2
    lua 5.2.3-1
    lvm2 2.02.106-2
    lzo2 2.08-1
    m4 1.4.17-1
    make 4.0-2
    man-db 2.6.7.1-1
    man-pages 3.70-1
    mariadb 10.0.12-2
    mariadb-clients 10.0.12-2
    masterpdfeditor 1.9.25-2
    mcpp 2.7.2-5
    mdadm 3.3.1-2
    media-player-info 19-1
    mesa 10.2.4-1
    mesa-demos 8.2.0-1
    mesa-libgl 10.2.4-1
    metacity 2.34.13-7
    mime-types 9-1
    mjpegtools 2.1.0-1
    mkinitcpio 17-1
    mkinitcpio-busybox 1.21.1-2
    mlt-git v0.9.2.r15.g04ef766-1
    mobile-broadband-provider-info 20120614-2
    moka-icons-git 312.b2d1642-1
    mono 3.4.0-1
    mono-addins 1.1-1
    monodevelop 5.0.1-1
    movit 1.1.1-1
    mozilla-common 1.4-4
    mpfr 3.1.2.p10-1
    mpg123 1.20.0-1
    mplayer 37224-1
    mtdev 1.1.5-1
    mtools 4.0.18-2
    musicbrainz 2.1.5-6
    mutagen 1.23-1
    nano 2.2.6-3
    nasm 2.11.05-1
    nautilus 3.12.2-1
    nautilus-sendto 3.8.1-1
    ncdu 1.10-1
    ncurses 5.9-6
    neon 0.30.0-1
    net-tools 1.60.20130531git-1
    netctl 1.8-1
    nettle 2.7.1-1
    network-manager-applet 0.9.8.10-1
    networkmanager 0.9.8.10-3
    networkmanager-openconnect 0.9.8.6-1
    networkmanager-openvpn 0.9.8.4-1
    networkmanager-pptp 0.9.8.4-2
    networkmanager-vpnc 0.9.8.6-1
    notify-sharp 0.4.1-1
    nouveau-dri 10.2.4-1
    nspr 4.10.6-1
    nss 3.16.3-1
    ntfs-3g 2014.2.15-1
    ntp 4.2.7.p446-1
    nvidia 340.24-1
    nvidia-cg-toolkit 3.1-3
    nvidia-utils 340.24-1
    openal 1.15.1-2
    opencl-nvidia-beta 340.24-1
    openconnect 1:5.03-1
    opencore-amr 0.1.3-2
    opencv 2.4.9-1
    openexr 2.1.0-1
    openjpeg 1.5.2-1
    openresolv 3.5.6-1
    openssh 6.6p1-2
    openssl 1.0.1.h-1
    openvpn 2.3.4-1
    optipng 0.7.5-1
    opus 1.1-1
    orage 4.10.0-1
    orbit2 2.14.19-3
    orc 0.4.19-1
    os-prober 1.58-1
    oxygen-icons 4.13.3-1
    p11-kit 0.20.2-1
    p7zip 9.20.1-9
    package-query 1.4-1
    packer 20140103-1
    packer-color 20130730-1
    pacman 4.1.2-6
    pacman-mirrorlist 20140706-1
    pam 1.1.8-5
    pambase 20130928-1
    pango 1.36.5-1
    pango-perl 1.226-1
    pangomm 2.34.0-1
    pangox-compat 0.0.2-2
    parted 3.1-4
    patch 2.7.1-3
    pavucontrol 2.0-2
    pciutils 3.2.1-1
    pcmciautils 018-7
    pcre 8.35-1
    pcsclite 1.8.11-1
    pcsx2 1.2.2-2
    perl 5.20.0-5
    perl-bit-vector 7.3-2
    perl-capture-tiny 0.24-1
    perl-carp-clan 6.04-3
    perl-class-accessor 0.34-4
    perl-class-data-inheritable 0.08-6
    perl-common-sense 3.73-1
    perl-data-optlist 0.109-2
    perl-data-random 0.11-2
    perl-date-calc 6.3-3
    perl-devel-checkcompiler 0.05-1
    perl-devel-symdump 2.11-1
    perl-digest-hmac 1.03-3
    perl-digest-sha1 2.13-5
    perl-encode-locale 1.03-2
    perl-error 0.17022-1
    perl-extutils-config 0.007-2
    perl-extutils-depends 0.308-1
    perl-extutils-helpers 0.022-2
    perl-extutils-installpaths 0.010-2
    perl-extutils-pkgconfig 1.15-1
    perl-file-basedir 0.03-6
    perl-file-copy-recursive 0.38-1
    perl-file-listing 6.04-2
    perl-file-slurp-tiny 0.003-2
    perl-file-which 1.09-4
    perl-gd 2.53-2
    perl-gnome2-wnck 0.16-9
    perl-goo-canvas 0.06-4
    perl-gtk2-appindicator 0.15-2
    perl-gtk2-imageview 0.05-4
    perl-gtk2-unique 0.05-10
    perl-html-form 6.03-2
    perl-html-parser 3.71-3
    perl-html-tagset 3.20-4
    perl-http-cookies 6.01-2
    perl-http-daemon 6.01-2
    perl-http-date 6.02-2
    perl-http-message 6.06-2
    perl-http-negotiate 6.01-2
    perl-http-response-encoding 0.06-3
    perl-http-server-simple 0.44-2
    perl-image-exiftool 9.60-1
    perl-io-socket-ssl 1.997-1
    perl-io-string 1.08-9
    perl-json 2.90-1
    perl-json-xs 3.01-3
    perl-libwww 6.08-1
    perl-locale-gettext 1.05-11
    perl-lwp-mediatypes 6.02-2
    perl-lwp-protocol-https 6.04-1
    perl-module-build-tiny 0.036-2
    perl-module-build-xsutil 0.10-1
    perl-mouse 2.3.0-1
    perl-mozilla-ca 20130114-2
    perl-net-dbus 1.0.0-4
    perl-net-dropbox-api 1.9-3
    perl-net-http 6.07-1
    perl-net-oauth 0.28-4
    perl-net-ssleay 1.63-2
    perl-params-util 1.07-3
    perl-path-class 0.33-1
    perl-pod-coverage 0.23-1
    perl-proc-processtable 0.50-3
    perl-proc-simple 1.31-3
    perl-sort-naturally 1.03-1
    perl-sub-exporter 0.987-1
    perl-sub-install 0.927-1
    perl-sub-uplevel 0.24-2
    perl-test-deep 0.112-1
    perl-test-exception 0.32-2
    perl-test-fatal 0.013-1
    perl-test-leaktrace 0.14-2
    perl-test-nowarnings 1.04-2
    perl-test-output 1.03-1
    perl-test-pod 1.48-1
    perl-test-pod-coverage 1.10-1
    perl-test-requires 0.07-1
    perl-test-tester 0.109-1
    perl-test-warn 0.30-1
    perl-text-iconv 1.7-9
    perl-tree-dag-node 1.22-2
    perl-try-tiny 0.22-1
    perl-types-serialiser 1.0-1
    perl-uri 1.64-1
    perl-www-mechanize 1.73-1
    perl-www-robotrules 6.02-2
    perl-x11-protocol 0.56-6
    perl-xml-libxml 2.0116-2
    perl-xml-namespacesupport 1.11-3
    perl-xml-parser 2.41-5
    perl-xml-sax 0.99-4
    perl-xml-sax-base 1.08-3
    perl-xml-simple 2.20-2
    perl-xml-twig 3.48-1
    perl-yaml-tiny 1.62-2
    phonon-qt4 4.7.2-1
    phonon-qt4-gstreamer 4.7.2-1
    phonon-qt5 4.7.2-1
    phonon-qt5-gstreamer 4.7.2-1
    photorecover 0.9.0-1
    php 5.5.15-1
    php-apache 5.5.15-1
    pia-tools 0.9.7.1-1
    pidgin 2.10.9-2
    pidgin-otr 4.0.0-2
    pinentry 0.8.3-1
    pixman 0.32.6-1
    pkg-config 0.28-2
    pngcrush 1.7.75-1
    polkit 0.112-2
    polkit-kde 0.99.0-3
    polkit-qt4 0.112-1
    polkit-qt5 0.112-1
    poppler 0.26.3-1
    poppler-glib 0.26.3-1
    popt 1.16-7
    portaudio 19_20140130-1
    portmidi 217-5
    postgresql 9.3.5-1
    postgresql-libs 9.3.5-1
    poweriso 1.3-4
    ppp 2.4.6-2
    pptpclient 1.8.0-2
    presentproto 1.0-1
    primus 20131226-1
    prison 1.1.1-1
    procps-ng 3.3.9-3
    progsreiserfs 0.3.0.5-8
    proot 3.2.2-1
    protobuf 2.5.0-4
    psmisc 22.21-2
    pth 2.0.7-5
    pulseaudio 5.0-1
    pygobject-devel 3.12.2-1
    pygobject2-devel 2.28.6-10
    pygtk 2.24.0-4
    pyqt4-common 4.11.1-1
    pyrex 0.9.9-4
    python 3.4.1-1
    python-cairo 1.10.0-4
    python-dbus 1.2.0-3
    python-dbus-common 1.2.0-3
    python-distutils-extra 2.38-2
    python-gobject 3.12.2-1
    python-xdg 0.25-2
    python2 2.7.8-1
    python2-babel 1.3-4
    python2-beaker 1.6.4-2
    python2-beautifulsoup4 4.3.2-2
    python2-cairo 1.10.0-2
    python2-configobj 5.0.5-1
    python2-dbus 1.2.0-3
    python2-distutils-extra 2.38-2
    python2-exiv2 0.3.2-3
    python2-gconf 2.28.1-9
    python2-gobject 3.12.2-1
    python2-gobject2 2.28.6-10
    python2-gtkspell 2.25.3-13
    python2-gudev 147.2-5
    python2-httplib2 0.9-2
    python2-jinja 2.7.3-1
    python2-keybinder2 0.3.0-2
    python2-lxml 3.3.5-1
    python2-mako 1.0.0-1
    python2-markupsafe 0.23-1
    python2-notify 0.1.1-13
    python2-oauth 1.0.1-3
    python2-pillow 2.5.1-1
    python2-pycurl 7.19.5-1
    python2-pygame 1.9.1-8
    python2-pyqt4 4.11.1-1
    python2-pyside 1.2.1-2
    python2-pytz 2014.4-1
    python2-requests 2.3.0-1
    python2-rsvg 2.32.0-15
    python2-setuptools 1:5.4.1-1
    python2-simplejson 3.4.0-1
    python2-sip 4.16.2-1
    python2-six 1.7.3-1
    pywebkitgtk 1.1.8-3
    qca 2.0.3-5
    qca-ossl 2.0.0-7
    qimageblitz 0.0.6-4
    qjson 0.8.1-3
    qpdf 5.1.2-1
    qrencode 3.4.4-1
    qt4 4.8.6-1
    qt5-base 5.3.1-1
    qt5-declarative 5.3.1-1
    qt5-location 5.3.1-1
    qt5-quick1 5.3.1-1
    qt5-quickcontrols 5.3.1-1
    qt5-script 5.3.1-1
    qt5-sensors 5.3.1-1
    qt5-svg 5.3.1-1
    qt5-tools 5.3.1-1
    qt5-translations 5.3.1-1
    qt5-webkit 5.3.1-1
    qt5-x11extras 5.3.1-1
    qt5-xmlpatterns 5.3.1-1
    qtchooser 41-1
    qtcreator 3.1.2-1
    qtwebkit 2.3.3-1
    randrproto 1.4.0-2
    raptor 2.0.13-2
    rarian 0.8.1-4
    rasqal 1:0.9.32-1
    rdesktop 1.8.2-1
    readline 6.3.006-1
    recode 3.6-8
    recordmydesktop 0.3.8.1-7
    recordproto 1.14.2-2
    redland 1:1.0.17-2
    regetron 1.4-1
    regex 1.0c.rev40-1
    reiserfsprogs 3.6.24-1
    remmina 1.0.0-12
    remmina-plugin-rdesktop 1.0.0.3-1
    renderproto 0.11.1-3
    resourceproto 1.2.0-3
    rest 0.7.91-1
    ristretto 0.6.3-4
    rpmextract 1.0-6
    rsvg2-sharp 2.26.0-10
    rsync 3.1.1-2
    rtkit 0.11-4
    rtmpdump 20131205-1
    ruby 2.1.2-1
    ruby1.9 1.9.3_p547-3
    ruby1.9-bundler 1.6.3-1
    run-parts 4.4-1
    s-nail 14.7.4-1
    samba 4.1.9-1
    sbc 1.2-1
    schroedinger 1.0.11-2
    screenfetch 3.2.2-1
    scrnsaverproto 1.2.2-2
    sdl 1.2.15-6
    sdl2 2.0.3-1
    sdl2_image 2.0.0-2
    sdl_image 1.2.12-3
    sdl_mixer 1.2.12-4
    sdl_net 1.2.8-2
    sdl_sound 1.0.3-5
    sdl_ttf 2.0.11-3
    sed 4.2.2-3
    serf 1.3.6-1
    sg3_utils 1.39-1
    shadow 4.2.1-1
    shared-mime-info 1.3-1
    shiboken 1.2.1-4
    shutter 0.91-2
    sip 4.16.2-1
    skype 4.3.0.37-3
    smaragd-git 20130504-1
    smbclient 4.1.9-1
    smpeg 0.4.5-1
    snappy 1.1.1-1
    solid 5.0.0-1
    sonnet 5.0.0-1
    sound-theme-freedesktop 0.8-2
    soundtouch 1.8.0-1
    source-highlight 3.1.7-9
    sox 14.4.1-4
    spandsp 0.0.6pre21-2
    speech-dispatcher 0.8-3
    speex 1.2rc1-4
    spotify 0.9.10.17-1
    sqlite 3.8.5-1
    startup-notification 0.12-4
    steam 1.0.0.47-2
    strace 4.8-1
    strigi 0.7.8-5
    sublime-text-dev 3.3059-1
    subversion 1.8.9-2
    sudo 1.8.10.p3-1
    sysfsutils 2.1.0-9
    syslinux 6.03pre18-1
    systemd 215-4
    systemd-sysvcompat 215-4
    t1lib 5.1.2-5
    taglib 1.9.1-1
    talloc 2.1.1-1
    tangerine-icon-theme 0.27-2
    tar 1.27.1-1
    tcl 8.6.1-1
    tdb 1.2.12-1
    telepathy-glib 0.24.0-1
    terminator 0.97-2
    terminus-font 4.39-1
    testdisk 6.14-2
    tevent 0.9.21-3
    texinfo 5.2-2
    thunar 1.6.3-1
    thunar-volman 0.8.0-2
    thunderbird 31.0-1
    tk 8.6.1-1
    tor-browser-en 3.6.2-2
    totem-plparser 3.10.2-1
    transmission-cli 2.84-1
    transmission-gtk 2.84-1
    trimage-git 20130126-1
    ttf-dejavu 2.34-1
    ttf-google-fonts-git 20140512-1
    ttf-ms-fonts 2.0-10
    tumbler 0.1.30-1
    turpial-git 3.0.1642.5f269f4-1
    tzdata 2014e-1
    udisks 1.0.5-1
    udisks2 2.1.3-1
    ufw 0.33-3
    unrar 1:5.1.6-1
    unzip 6.0-7
    upower 0.99.0-2
    usb-creator 0.2.59-1
    usbutils 007-1
    util-linux 2.24.2-1
    v4l-utils 1.2.1-1
    vala 0.24.0-1
    variety 0.4.19-1
    vi 1:050325-4
    vid.stab 0.98b-2
    videoproto 2.3.2-1
    vim 7.4.373-1
    vim-runtime 7.4.373-1
    virtualbox 4.3.14-1
    virtualbox-guest-iso 4.3.14-1
    virtualbox-host-dkms 4.3.14-1
    virtualbox-host-modules 4.3.14-1
    virtualgl 2.3.3-1
    vlc 2.1.5-1
    vpnc 0.5.3.svn527-2
    vte 0.28.2-4
    vte-common 0.36.3-1
    vte3 0.36.3-1
    wavpack 4.70.0-2
    wayland 1.5.0-1
    webkitgtk 2.4.4-1
    webkitgtk2 2.4.4-1
    webrtc-audio-processing 0.1-2
    wee-buzzer 20120130:1.1-1
    weechat 0.4.3-2
    weevely 1.1-2
    wget 1.15-1
    which 2.20-7
    whois 5.1.3-1
    wildmidi 0.3.6-1
    wine 1.7.23-1
    winetricks 20140302-1
    wireshark-cli 1.10.8-1
    wireshark-gtk 1.10.8-1
    wnck-sharp 2.26.0-10
    wpa_supplicant 2.1-3
    wxgtk2.8 2.8.12.1-1
    x264 1:142.20140311-4
    x265 1.2-1
    xbitmaps 1.1.1-3
    xcb-proto 1.10-2
    xcb-util 0.3.9-2
    xcb-util-image 0.3.9-2
    xcb-util-keysyms 0.3.9-2
    xcb-util-renderutil 0.3.9-1
    xcb-util-wm 0.4.1-1
    xdg-utils 1.1.0.git20140630-1
    xerces-c 3.1.1-5
    xextproto 7.3.0-1
    xf86-input-evdev 2.9.0-1
    xf86-input-joystick 1.6.2-3
    xf86-input-keyboard 1.8.0-2
    xf86-input-mouse 1.9.0-2
    xf86-input-synaptics 1.8.0-1
    xf86-input-vmmouse 13.0.0-3
    xf86-input-void 1.4.0-6
    xf86-video-ark 0.7.5-4
    xf86-video-ast 0.97.0-4
    xf86-video-cirrus 1.5.2-3
    xf86-video-dummy 0.3.7-2
    xf86-video-fbdev 0.4.4-2
    xf86-video-glint 1.2.8-4
    xf86-video-i128 1.3.6-4
    xf86-video-intel 2.99.912-2
    xf86-video-mach64 6.9.4-3
    xf86-video-mga 1.6.3-2
    xf86-video-modesetting 0.9.0-1
    xf86-video-neomagic 1.2.8-2
    xf86-video-nouveau 1.0.10-2
    xf86-video-nv 2.1.20-4
    xf86-video-openchrome 0.3.3-3
    xf86-video-r128 6.9.2-2
    xf86-video-savage 2.3.7-2
    xf86-video-siliconmotion 1.7.7-4
    xf86-video-sis 0.10.7-5
    xf86-video-tdfx 1.4.5-4
    xf86-video-trident 1.3.6-5
    xf86-video-v4l 0.2.0-13
    xf86-video-vesa 2.3.2-4
    xf86-video-voodoo 1.2.5-4
    xf86dgaproto 2.1-3
    xf86driproto 2.1.1-3
    xf86vidmodeproto 2.3.1-3
    xfce4-appfinder 4.10.1-1
    xfce4-datetime-plugin 0.6.2-2
    xfce4-mixer 4.10.0-2
    xfce4-notes-plugin 1.7.7-5
    xfce4-notifyd 0.2.4-1
    xfce4-panel 4.10.1-1
    xfce4-power-manager 1.2.0.212.g75107db-1
    xfce4-remmina-plugin 0.8.1-2
    xfce4-session 4.10.1-3
    xfce4-settings 4.10.1-1
    xfce4-terminal 0.6.3-1
    xfconf 4.10.0-4
    xfdesktop 4.10.2-2
    xfsprogs 3.2.0-1
    xfwm4 4.10.1-1
    xfwm4-themes 4.10.0-2
    xine-lib 1.2.6-1
    xineramaproto 1.2.1-3
    xkeyboard-config 2.12-1
    xorg-bdftopcf 1.0.4-2
    xorg-docs 1.7-2
    xorg-font-util 1.3.0-2
    xorg-font-utils 7.6-4
    xorg-fonts-100dpi 1.0.1-5
    xorg-fonts-75dpi 1.0.3-1
    xorg-fonts-alias 1.0.3-1
    xorg-fonts-encodings 1.0.4-4
    xorg-fonts-misc 1.0.1-3
    xorg-iceauth 1.0.6-1
    xorg-luit 1.1.1-2
    xorg-mkfontdir 1.0.7-2
    xorg-mkfontscale 1.1.1-1
    xorg-server 1.15.2-1
    xorg-server-common 1.15.2-1
    xorg-server-devel 1.15.2-1
    xorg-server-utils 7.6-4
    xorg-server-xephyr 1.15.2-1
    xorg-sessreg 1.0.8-2
    xorg-setxkbmap 1.3.0-2
    xorg-smproxy 1.0.5-2
    xorg-twm 1.0.8-2
    xorg-util-macros 1.19.0-1
    xorg-utils 7.6-9
    xorg-x11perf 1.5.4-2
    xorg-xauth 1.0.9-1
    xorg-xbacklight 1.2.1-1
    xorg-xclock 1.0.7-1
    xorg-xcmsdb 1.0.4-2
    xorg-xcursorgen 1.0.6-1
    xorg-xdpyinfo 1.3.1-1
    xorg-xdriinfo 1.0.4-4
    xorg-xev 1.2.1-2
    xorg-xgamma 1.0.5-2
    xorg-xhost 1.0.6-1
    xorg-xinit 1.3.3-3
    xorg-xinput 1.6.1-1
    xorg-xkbcomp 1.2.4-2
    xorg-xkbevd 1.1.3-2
    xorg-xkbutils 1.0.4-2
    xorg-xkill 1.0.4-1
    xorg-xlsatoms 1.1.1-2
    xorg-xlsclients 1.1.3-1
    xorg-xmessage 1.0.4-2
    xorg-xmodmap 1.0.8-1
    xorg-xpr 1.0.4-2
    xorg-xprop 1.2.2-1
    xorg-xrandr 1.4.2-1
    xorg-xrdb 1.1.0-1
    xorg-xrefresh 1.0.5-1
    xorg-xset 1.2.3-1
    xorg-xsetroot 1.1.1-2
    xorg-xvinfo 1.1.2-2
    xorg-xwd 1.0.6-1
    xorg-xwininfo 1.1.3-1
    xorg-xwud 1.0.4-2
    xproto 7.0.26-1
    xterm 309-1
    xvidcore 1.3.3-1
    xz 5.0.5-2
    yajl 2.1.0-1
    yaourt 1.5-1
    yelp 3.12.0-1
    yelp-xsl 3.12.0-1
    zekr 1.1.0-2
    zenity 3.12.1-1
    zeromq 4.0.4-3
    zip 3.0-4
    zlib 1.2.8-3
    zsnes 1.51-17
    zvbi 0.2.33-6
    removed arch-assault to recieve help on pure Arch, thank you for showing me in the rules admin
    Appreciate the help.
    Last edited by mrbeard (2014-07-28 04:31:57)

    mrbeard wrote:archassault-keyring 20140202-3
    archassault-mirrorlist 20140527-1
    Closing: https://wiki.archlinux.org/index.php/Fo … pport_ONLY

Maybe you are looking for

  • Buttons not working when workbook is opened. Error says about macro.

    Hi Gurus, I have created a workbook and it was working fine. But now when i open the workbook it throws an error saying " Cannot run the macro Workbookname.button_click. The macro may not be available in this workbook or all macros may be disabled" .

  • Warning message when repairing permissions

    I Just repaired permissions and the usual large list showed up. But this time I got a message that says: "Warning: SUID file "System/Library/CoreService...ent" has been modified and will not be repaired. I navigated to that site and could not find a

  • C7280 photo print colors off for PicBridge images

    I have a new C7270 that prints photos that are too yellow when printing directly from USB camera.  I've performed a comparison of the same photo printed by the C7280 and also by a brand new Epson Artisan 800.  The color of the print from the C7280 is

  • Calling seeded oracle form from custom form

    Hi All, I wan't to call oracle seeded form for Item Entry(INVIDITM) from a custom oracle form in Inventory module. When I call the form using FND_FUNCTION.EXECUTE and pass item_id as one of the paarmeters, the seeded form open but with very limited c

  • Mac flash player 50% install error

    Installed mac flash player to 50% then it says error close the following to continue and its talking about safari but i dont have it open and it has the red circle with a slash through it sign in front of it