[SOLVED] PulseAudio doesn't detect HDA Intel, only HDA NVidia

Hi,
I get sound only through my monitor (DP - HDA Nvidia), my external speakers or headphones (HDA Intel) are not recognized by PulseAudio. Both worked in the past, I don't know what broke it.
 aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: PCH [HDA Intel PCH], device 0: ALC1150 Analog [ALC1150 Analog]
Subdevices: 0/1
Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 1: ALC1150 Digital [ALC1150 Digital]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: NVidia [HDA NVidia], device 7: HDMI 1 [HDMI 1]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: NVidia [HDA NVidia], device 8: HDMI 2 [HDMI 2]
Subdevices: 0/1
Subdevice #0: subdevice #0
card 1: NVidia [HDA NVidia], device 9: HDMI 3 [HDMI 3]
Subdevices: 1/1
Subdevice #0: subdevice #0
but in pacmd "list-cards" shows only NVidia...
I do not have ~/.asound.conf, but I do have /etc/asound.conf (I never changed this):
# Use PulseAudio by default
pcm.!default {
type pulse
fallback "sysdefault"
hint {
show on
description "Default ALSA Output (currently PulseAudio Sound Server)"
ctl.!default {
type pulse
fallback "sysdefault"
# vim:set ft=alsaconf:
Also, when I do "pulseaudio --kill" it seems to restart automatically and journalctl -f shows "[pulseaudio] pid.c: Daemon already running."...
If you need any more info on this, I'll provide it as soon as possible...
Thanks!
Last edited by predmijat (2015-04-27 18:17:53)

Here, I dug up an old file I have kicking around.
Put it in /etc/modprobe.d/alsa.conf
Name it anything you want instead of "alsa.conf" as long as the file name ends in ".conf"
options snd_hda_intel enable=1,0 vid=8086,10de pid=3b56,0bea
options snd_hda_intel index=0 vid=8086 pid=3b56
The VID and PID numbers are from my hardware.  You will have to replace them from your hardware.  Do:
lspci -nn | grep -i audio
And you will see both your on-board and nVidia audio devices.  Look for [xxxx:xxxx] in the listing.  The first xxxx is your VID - vendor, and the second xxxx is your PID - product/part.
In the "enable=1,0" line put the two VID's first with you on-board being the first VID and then put your two PID's with your on-board being the first PID.  Then in the "index=0" line put your on-board VID and PID.
This will disable the nVidia audio and just enable your on-board audio.  It will explicitly set your on-board audio to be the first audio device on your system.  This will fix a race condition.
Remember, you must put in the appropriate VID and PID's for your specific hardware.
PulseAudio builds on top of ALSA so you are configuring your ALSA devices at a lower level before Pulse starts and when Pulse starts it adds its layer on top of that.
Another assumption is that both audio devices are using snd_hda_intel which is a pretty safe assumption.  Use "lsmod" to confirm this.

Similar Messages

  • [solved] Pulseaudio doesn't detect sound card after system update

    Before a recent system update I had pulseaudio working flawlessly, but after doing a recent system update with pacman -Syu,
    pulseaudio no longer sees my sound card and only displays the Dummy audio device.  Among the packages updated that I can
    remember off the top of my head are the Linux keneral, udev, kmod, instead of trying to roll back my system I figured I would try
    to fix the issue.  The only thing suggested in the Pulseaudio wiki is that a asound.conf directory is overriding the /etc/asound.conf
    file which is not the case on my system.
    Looking at the output from lsmod I can see where the kernel modules for the sound card is getting loaded
    snd_hda_intel 23375 0
    snd_hda_codec 89160 3 snd_hda_intel,snd_hda_codec_realtek,snd_hda_codec_hdmi
    snd_hwdep 6389 1 snd_hda_codec
    snd_pcm 74780 3 snd_hda_codec,snd_hda_intel,snd_hda_codec_hdmi
    snd_page_alloc 7153 2 snd_pcm,snd_hda_intel
    snd_timer 19544 1 snd_pcm
    and looking at the output from the ps command I can see that pulseaudio is getting started
    1190 ? S<l 0:00 /usr/bin/pulseaudio --start
    1195 ? S 0:00 \_ /usr/lib/pulse/gconf-helper
    but pacmd list still reports this
    0 card(s) available.
    0 sink input(s) available.
    0 source outputs(s) available.
    0 cache entrie(s) available.
    Here is the output of pacmd dump if it helps
    ### Configuration dump generated at Thu Feb 16 08:45:56 2012
    load-module module-device-restore
    load-module module-stream-restore
    load-module module-card-restore
    load-module module-augment-properties
    load-module module-udev-detect tsched=0
    load-module module-jackdbus-detect
    load-module module-bluetooth-discover
    load-module module-esound-protocol-unix
    load-module module-native-protocol-unix
    load-module module-gconf
    load-module module-default-device-restore
    load-module module-rescue-streams
    load-module module-null-sink sink_name=auto_null sink_properties='device.description="Dummy Output"'
    load-module module-always-sink
    load-module module-intended-roles
    load-module module-suspend-on-idle
    load-module module-console-kit
    load-module module-position-event-sounds
    load-module module-cork-music-on-phone
    load-module module-filter-heuristics
    load-module module-filter-apply
    load-module module-dbus-protocol
    load-module module-x11-publish display=:0.0
    load-module module-cli-protocol-unix
    set-sink-volume auto_null 0x10000
    set-sink-mute auto_null no
    suspend-sink auto_null yes
    set-source-volume auto_null.monitor 0x10000
    set-source-mute auto_null.monitor no
    suspend-source auto_null.monitor yes
    set-default-sink auto_null
    set-default-source auto_null.monitor
    ### EOF
    EDIT: I should also add that fuser -v /dev/snd/* returns nothing and fuser -v /dev/dsp returns "Specified filename /dev/dsp does not exist".
    Last edited by vendion (2012-03-02 23:26:28)

    Digging into this further aplay -L gives different output based off of whether or not I ran is as my normal user or with sudo/as root.
    As a user (which is how pulseaudio is also being ran):
    > aplay -L
    null
    Discard all samples (playback) or generate zero samples (capture)
    pulse
    PulseAudio Sound Server
    default
    Default ALSA Output (currently PulseAudio Sound Server)
    as root it does see both my sound cards when I run it with sudo or as root:
    > sudo aplay -L
    Password:
    null
    Discard all samples (playback) or generate zero samples (capture)
    pulse
    PulseAudio Sound Server
    default
    Default ALSA Output (currently PulseAudio Sound Server)
    sysdefault:CARD=SB
    HDA ATI SB, ALC887-VD Analog
    Default Audio Device
    front:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    Front speakers
    surround40:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    iec958:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Digital
    IEC958 (S/PDIF) Digital Audio Output
    hdmi:CARD=HDMI,DEV=0
    HDA ATI HDMI, HDMI 0
    HDMI Audio Output
    This behavior is confusing to me, and if someone knows what is going on and how to fix it I really want to get sound with pulseaudio working and have sound again.

  • Pulseaudio doesn't detect all profiles

    Hello archlinux forum
    I have problems setting up pulseaudio on my new archlinux installation, it fails to detect the full capabilities of my soundcards.
    alsa detects every sound card (there are 3: my audigy sound card, my internal intel hda and my graphics card's hdmi), but pulseaudio only registers the inputs of my audigy and the intel hda, so i have no sound without tinkering
    $ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: Audigy2 [SB Audigy 2 ZS [SB0350]], device 0: emu10k1 [ADC Capture/Standard PCM Playback]
    Subdevices: 32/32
    Subdevice #0: subdevice #0
    Subdevice #1: subdevice #1
    Subdevice #2: subdevice #2
    Subdevice #3: subdevice #3
    Subdevice #4: subdevice #4
    Subdevice #5: subdevice #5
    Subdevice #6: subdevice #6
    Subdevice #7: subdevice #7
    Subdevice #8: subdevice #8
    Subdevice #9: subdevice #9
    Subdevice #10: subdevice #10
    Subdevice #11: subdevice #11
    Subdevice #12: subdevice #12
    Subdevice #13: subdevice #13
    Subdevice #14: subdevice #14
    Subdevice #15: subdevice #15
    Subdevice #16: subdevice #16
    Subdevice #17: subdevice #17
    Subdevice #18: subdevice #18
    Subdevice #19: subdevice #19
    Subdevice #20: subdevice #20
    Subdevice #21: subdevice #21
    Subdevice #22: subdevice #22
    Subdevice #23: subdevice #23
    Subdevice #24: subdevice #24
    Subdevice #25: subdevice #25
    Subdevice #26: subdevice #26
    Subdevice #27: subdevice #27
    Subdevice #28: subdevice #28
    Subdevice #29: subdevice #29
    Subdevice #30: subdevice #30
    Subdevice #31: subdevice #31
    card 0: Audigy2 [SB Audigy 2 ZS [SB0350]], device 2: emu10k1 efx [Multichannel Capture/PT Playback]
    Subdevices: 8/8
    Subdevice #0: subdevice #0
    Subdevice #1: subdevice #1
    Subdevice #2: subdevice #2
    Subdevice #3: subdevice #3
    Subdevice #4: subdevice #4
    Subdevice #5: subdevice #5
    Subdevice #6: subdevice #6
    Subdevice #7: subdevice #7
    card 0: Audigy2 [SB Audigy 2 ZS [SB0350]], device 3: emu10k1 [Multichannel Playback]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: Audigy2 [SB Audigy 2 ZS [SB0350]], device 4: p16v [p16v]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 2: PCH [HDA Intel PCH], device 0: ALC1150 Analog [ALC1150 Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 2: PCH [HDA Intel PCH], device 1: ALC1150 Digital [ALC1150 Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 3: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 3: NVidia [HDA NVidia], device 7: HDMI 1 [HDMI 1]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 3: NVidia [HDA NVidia], device 8: HDMI 2 [HDMI 2]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 3: NVidia [HDA NVidia], device 9: HDMI 3 [HDMI 3]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    pacmd list-cards
    3 card(s) available.
    index: 0
    name: <alsa_card.pci-0000_01_00.1>
    driver: <module-alsa-card.c>
    owner module: 6
    properties:
    alsa.card = "3"
    alsa.card_name = "HDA NVidia"
    alsa.long_card_name = "HDA NVidia at 0xf7080000 irq 17"
    alsa.driver_name = "snd_hda_intel"
    device.bus_path = "pci-0000:01:00.1"
    sysfs.path = "/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card3"
    device.bus = "pci"
    device.vendor.id = "10de"
    device.vendor.name = "NVIDIA Corporation"
    device.product.id = "0fba"
    device.string = "3"
    device.description = "HDA NVidia"
    module-udev-detect.discovered = "1"
    device.icon_name = "audio-card-pci"
    profiles:
    output:hdmi-stereo: Digital Stereo (HDMI) Output (priority 5400, available: unknown)
    output:hdmi-surround: Digital Surround 5.1 (HDMI) Output (priority 300, available: unknown)
    output:hdmi-surround71: Digital Surround 7.1 (HDMI) Output (priority 300, available: unknown)
    output:hdmi-stereo-extra1: Digital Stereo (HDMI 2) Output (priority 5200, available: unknown)
    output:hdmi-stereo-extra2: Digital Stereo (HDMI 3) Output (priority 5200, available: unknown)
    output:hdmi-surround-extra2: Digital Surround 5.1 (HDMI 3) Output (priority 100, available: unknown)
    output:hdmi-surround71-extra2: Digital Surround 7.1 (HDMI 3) Output (priority 100, available: unknown)
    output:hdmi-stereo-extra3: Digital Stereo (HDMI 4) Output (priority 5200, available: unknown)
    output:hdmi-surround-extra3: Digital Surround 5.1 (HDMI 4) Output (priority 100, available: unknown)
    output:hdmi-surround71-extra3: Digital Surround 7.1 (HDMI 4) Output (priority 100, available: unknown)
    off: Off (priority 0, available: unknown)
    active profile: <output:hdmi-stereo>
    sinks:
    alsa_output.pci-0000_01_00.1.hdmi-stereo/#0: HDA NVidia Digital Stereo (HDMI)
    sources:
    alsa_output.pci-0000_01_00.1.hdmi-stereo.monitor/#0: Monitor of HDA NVidia Digital Stereo (HDMI)
    ports:
    hdmi-output-0: HDMI / DisplayPort (priority 5900, latency offset 0 usec, available: no)
    properties:
    device.icon_name = "video-display"
    hdmi-output-1: HDMI / DisplayPort 2 (priority 5800, latency offset 0 usec, available: yes)
    properties:
    device.icon_name = "video-display"
    device.product.name = "S27C350
    hdmi-output-2: HDMI / DisplayPort 3 (priority 5700, latency offset 0 usec, available: no)
    properties:
    device.icon_name = "video-display"
    hdmi-output-3: HDMI / DisplayPort 4 (priority 5600, latency offset 0 usec, available: no)
    properties:
    device.icon_name = "video-display"
    index: 1
    name: <alsa_card.pci-0000_00_1b.0>
    driver: <module-alsa-card.c>
    owner module: 8
    properties:
    alsa.card = "2"
    alsa.card_name = "HDA Intel PCH"
    alsa.long_card_name = "HDA Intel PCH at 0xf7230000 irq 31"
    alsa.driver_name = "snd_hda_intel"
    device.bus_path = "pci-0000:00:1b.0"
    sysfs.path = "/devices/pci0000:00/0000:00:1b.0/sound/card2"
    device.bus = "pci"
    device.vendor.id = "8086"
    device.vendor.name = "Intel Corporation"
    device.product.id = "8ca0"
    device.product.name = "9 Series Chipset Family HD Audio Controller"
    device.form_factor = "internal"
    device.string = "2"
    device.description = "Built-in Audio"
    module-udev-detect.discovered = "1"
    device.icon_name = "audio-card-pci"
    profiles:
    input:analog-stereo: Analog Stereo Input (priority 60, available: unknown)
    off: Off (priority 0, available: unknown)
    active profile: <input:analog-stereo>
    sources:
    alsa_input.pci-0000_00_1b.0.analog-stereo/#1: Built-in Audio Analog Stereo
    ports:
    analog-input-front-mic: Front Microphone (priority 8500, latency offset 0 usec, available: no)
    properties:
    device.icon_name = "audio-input-microphone"
    analog-input-rear-mic: Rear Microphone (priority 8200, latency offset 0 usec, available: no)
    properties:
    device.icon_name = "audio-input-microphone"
    analog-input-linein: Line In (priority 8100, latency offset 0 usec, available: no)
    properties:
    index: 2
    name: <alsa_card.pci-0000_04_02.0>
    driver: <module-alsa-card.c>
    owner module: 9
    properties:
    alsa.card = "0"
    alsa.card_name = "SB Audigy 2 ZS [SB0350]"
    alsa.long_card_name = "SB Audigy 2 ZS [SB0350] (rev.4, serial:0x20021102) at 0xd000, irq 17"
    alsa.driver_name = "snd_emu10k1"
    device.bus_path = "pci-0000:04:02.0"
    sysfs.path = "/devices/pci0000:00/0000:00:1c.3/0000:03:00.0/0000:04:02.0/sound/card0"
    device.bus = "pci"
    device.vendor.id = "1102"
    device.vendor.name = "Creative Labs"
    device.product.id = "0004"
    device.product.name = "SB Audigy (2 ZS (SB0350))"
    device.string = "0"
    device.description = "SB Audigy (2 ZS (SB0350))"
    module-udev-detect.discovered = "1"
    device.icon_name = "audio-card-pci"
    profiles:
    input:multichannel: Multichannel Input (priority 1, available: unknown)
    off: Off (priority 0, available: unknown)
    active profile: <input:multichannel>
    sources:
    alsa_input.pci-0000_04_02.0.multichannel/#2: SB Audigy (2 ZS (SB0350)) Multichannel
    sound works if i manually load the modules for my audigy and my intel sound card and set them as defaults, but this stinks because alsa seems to randomly renumber the cards after reboot
    I hope for some helpful input
    thanks harlequix

    Why do you use alsa and pulseaudio at the same time? You could have only pulseaudio and in, for an example, pavucontrol (gui for pulseaudio settings) you could choos which should be first, and rest mark as the spare. If you want to use pulse and alsa (in my case i have this option because i use mainly alsa and pulseaudio only for skype) you could set index for alsa (you have to crate file in /etc/modprobe.d/ and name it alsa-base.conf) and configure pulse to not grab alsa hadrware by editing /etc/pulse/default.pa. Both of these metods are explained on archwiki in pulseaudio and alsa pages.
    BTW - about nvidia hdmi. nvidia sound chip use the same driver, that intel hda does:
    lspci -vvvv
    01:00.1 Audio device: NVIDIA Corporation GK106 HDMI Audio Controller (rev a1)
    Subsystem: Gigabyte Technology Co., Ltd Device 354e
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin B routed to IRQ 17
    Region 0: Memory at f6080000 (32-bit, non-prefetchable) [size=16K]
    Capabilities: <access denied>
    Kernel driver in use: snd_hda_intel
    Kernel modules: snd_hda_intel
    but also something that in my opinion is an front end for it:
    [firekage@arch_desktop ~]$ lsmod | grep snd_
    snd_hda_codec_hdmi 49263 1
    snd_usbmidi_lib 27571 0
    snd_rawmidi 26806 1 snd_usbmidi_lib
    snd_seq_device 13307 1 snd_rawmidi
    snd_hda_intel 26387 2
    snd_hda_controller 26857 1 snd_hda_intel
    snd_hda_codec 112621 3 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_controller
    snd_ctxfi 104184 3
    snd_hwdep 17244 1 snd_hda_codec
    snd_pcm 88779 6 snd_ctxfi,snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_controller
    snd_timer 26614 1 snd_pcm
    snd 73436 19 snd_ctxfi,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_rawmidi,snd_usbmidi_lib,snd_hda_codec,snd_hda_intel,snd_seq_device
    soundcore 13031 2 snd,snd_hda_codec
    usbcore 199382 9 uas,usblp,uvcvideo,usb_storage,snd_usbmidi_lib,ehci_hcd,ehci_pci,usbhid
    [firekage@arch_desktop ~]$
    you should see snd_hda_codec_hdmi and _snd_hda_codec.
    Last edited by firekage (2015-04-10 22:24:50)

  • [SOLVED] CUPS doesn't detect USB Samsung ML-2010 printer

    Hi. I only speak a little English. Sorry for that.
    I have got an USB Samsung ML-2010 printer. Before I used cups-usblp from AUR, and it worked. But it doesn't work now. The cups-usblp maintainer suggests to use cups instead of cups-usblp. Searching with google, it appears that other people don't have problems with this printer, cups, and archlinux. But I do. Cups' web interface doesn't detect it.
    Well, this is how are the things now:
    $ lsusb | grep Samsung
    Bus 002 Device 004: ID 04e8:326c Samsung Electronics Co., Ltd ML-2010P Mono Laser Printer
    $ ls -l /dev/bus/usb/002/004
    crw-rw-r-- 1 root lp 189, 131 mar  4 09:56 /dev/bus/usb/002/004
    $ grep usb /lib/udev/rules.d/50-udev-default.rules
    # 'libusb' device nodes
    SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", MODE="0664"
    SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", IMPORT{builtin}="usb_id"
    SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ENV{ID_USB_INTERFACES}=="*:0701??:*", GROUP="lp"
    $ sudo grep SystemGroup /etc/cups/cupsd.conf
    SystemGroup sys root lp
    $ groups
    lp wheel games video audio optical storage scanner power users
    $ cat /etc/modprobe.d/blacklist.conf
    blacklist usblp
    $ lsmod | grep usblp
    (no output)
    $ cat /etc/udev/rules.d/10-cups_device_link.rules
    KERNEL=="lp[0-9]", SYMLINK+="%k", GROUP="lp"
    $ cat /etc/udev/rules.d/10-usbprinter.rules
    ATTR{idVendor}=="04e8", ATTR{idProduct}=="326c", MODE:="0660", GROUP:="lp"
    $ rc.d status cupsd
    :: Checking cupsd status                                                                                                   [STARTED]
    $ pacman -Q cups ghostscript gsfonts gutenprint foomatic-db foomatic-db-engine foomatic-db-nonfree foomatic-filters splix
    cups 1.5.2-1
    ghostscript 9.05-1
    gsfonts 1.0.7pre44-3
    gutenprint 5.2.7-3
    foomatic-db 1:4.0.7_20110707-1
    foomatic-db-engine 1:4.0.7_20110707-1
    foomatic-db-nonfree 1:4.0.7_20110707-1
    foomatic-filters 1:4.0.7_20110707-1
    splix 2.0.0-11
    I open http://localhost:631 in my browser, click "add new printer" and I get just "Serial printer #1"
    at "local printers". There isn't my printer. I use KDE, and KDE's tool for adding printers doesn's detect it either.
    I miss archlinux, but I need to print.
    What may be wrong? What may be I am missing?
    Thanks a lot for your comments and help.
    Last edited by felihommen (2012-03-04 20:33:39)

    Solved!
    Restarting cupsd didn't work.
    But reinstalling cups...
    $ sudo pacman -Rdc cups (it is a dependency of kdeadmin-system-config-printer-kde which I had installed)
    $ sudo rm -r /etc/cups/*
    I realize cupsd is already running:
    $ ps aux | grep cupsd
    root      1549  0.0  0.1  75548  4080 ?        Ss   21:04   0:00 cupsd -C /etc/cups/cupsd.conf
    felipe    1690  0.0  0.0   8416  1028 pts/1    S+   21:13   0:00 grep cups
    I kill it
    $ sudo -SIGKILL 1549
    $ ps aux | grep cupsd
    felipe    1694  0.0  0.0   8416  1024 pts/1    S+   21:13   0:00 grep cups
    Ok. Reinstall cups
    $ sudo pacman -S cups
    Start cups daemon:
    $ sudo rc.d start cupsd
    Open firefox. Go to web interface, bla, bla, bla.... And it's there!
    I feel really silly. It was a fresh install, so I didn't think about reinstalling.
    Printed some jobs and worked perfectly. I used the gutenprint driver.
    Thanks a lot, pyther.  I thought yours wasn't a very useful suggestion, but it really was. I'm so happy. I owe you.

  • [SOLVED]fdisk doesn't detect hard drives

    As I'm progressing with installation of Arch, new problems come
    When trying to partition brand new drive during the installation process, I've ran into problem that the drive isn't detected at all. I have 3 physical drives on this machine, including brand new SSD I want to work with (install Arch on), HDD with Windows and external USB stick which I booted from. However, while running either fdisk -l or lsblk only USB stick was to show up as physical drive. (There were other devices of type "loop" showing up when running lsblk, I don't think that they have smth to do with my issue) Important may be that both internal drives are connected to SATA3 ports, though BIOS can see them (and even boot Windows from) perfectly well.
    Googling didn't really help, people were experiencing same problem with external USB hard drives, and the only solution related to Linux was to modify kernel to extend USB storage delay, but there are no parameters like that to work with SATA.
    SOLUTION: so the problem seems to be with SATA3, one needs to switch drive loading option from IDE to AHCI in BIOS, though nothing like that is on wiki.
    keep creating unnecessary topics :uneasy:
    Last edited by L1ghtmareI (2014-08-30 08:56:30)

    Quote
    ps: i wanted to set them both on RAID-0... is this possible even thought they're ATA devices, and not SATA?
    ...nope...your motherboard only supports SATA RAID...
    ...try connecting a single HDD as master on the first IDE channel...
    ...how many optical drives will you have?..

  • [SOLVED]Firefox doesn't detect Flash plugin on a fresh installation

    I have tried the package in extra and the package from AUR, but firefox still doesn't register the flash plugin. I'm probably just missing something here..
    [tapio@Pochi flashplugin-alpha-64]$ ls /usr/lib/mozilla/plugins/
    libflashplayer.so
    Is there something extra I have to do other than installing the package? I looked at the old wiki page for using nspluginwrapper but I couldn't see anything that looked relevant..
    Any help would be much appreciated.
    Last edited by tzar (2008-12-21 05:36:35)

    Try to log out and back in so that the scripts in /etc/profile.d/ get called.

  • Solved. Installer doesn't detect harddrives

    Hello, so this is my first time trying to install arch linux outside of virtualbox and the installer doesn't seem to detect my hard drives.
    I get to the point in installation where I'm supposed to partition my harddrives and nothing is there, so I selected other and by using "dmesg | grep sd" I managed to find out that the drive i wanted to contain my arch install was called sdb. I wrote /dev/sdb in the "other"-box and was able to partition my hard dive the way I want. However, when I get to the step where I'm supposed to set my filesystems mountpoints there is no detected hard drives and no "other" option, so I'm pretty much stuck there.
    I have tried searching but I didn't find anything on this particular problem, only GRUB related issues. Is there anyone here that know how to solve this?
    Sorry for my English, it's not my first language but hopefully i made some sense at least.
    edit, I forgot to add that I have tried the legacy IDE booting method too, but it did not help.
    Last edited by göteborg-johan (2009-02-28 19:07:29)

    nowahn wrote:
    I have no idea why the installer doesn't detect your hardrive, but you should be able to workaround by mounting the partitions manually.
    - mount the root partition to /mnt
    - create a directory in /mnt for each separate partition
    - mount all the partitions
    then go to the step after setting hard drives in the installer.
    I'm not sure this will work, just try. the installer should complains that you did not set any mountpoints, maybe entering the Set Filesystem Mountpoints step, and exiting with DONE can fix this.
    Thanks for your reply, will try that.
    One question tho, how would I set the swap partition using that method?

  • My iMac 20"/Intel C2D 2.4 Doesn't Detect my Sanyo Xacti FH1A.

    My iMac 20"/Intel C2D 2.4 Doesn't Detect my *_+Sanyo Xacti FH1A+_* (1920x1080 60p/60i/MPEG-4 AVC/H.264) Camcorder.
    I followed exactly my Xacti manual, but nothing happens.
    From Mini USB (Xacti Camcoder) to USB (iMac)...nothing!
    After connecting the USB, In my Camcoder's screen, it says, *"Hard disk is not Connected."* & *"Disconnect USB converter cable if not using XACTI Library."*
    Is this an Apple issue or a Sanyo issue?
    Thanks!
    Frank S.
    SHOCKPROOFX.COM™ ESA
    Message was edited by: SHOCKPROOF

    Hi, first thing I would do is try connecting the Sanyo to another Mac.
    On your Mac try going the SMC route:- http://macosx.com/forums/howto-faqs/302002-reset-system-management-controller-sm c.html
    Try another connecting cable - Look on the FAQ (Sanyo Site)->http://sanyo.com/xacti/english/products/vpc_fh1a/index.html..........L
    Message was edited by: elmac

  • [SOLVED][GNOME] Pulseaudio doesn't start

    Hey,
    On cinnamon, pulseaudio starts on startup but with gnome3.8/3.6 pulseaudio doesn't start.
    I always need to start it manually via `pulseaudio --start`.
    Does someone know how to fix this?
    Thanks in advance!
    Last edited by sh4nks (2013-05-01 07:04:20)

    ijanos wrote:Run gnome-session-properties and enable "PulseAudio Sound System"
    Thanks!
    But there wasn't such an entry so I have to add by myself
    If someone is curious how I added it..:
    1. Run `gnome-session-propertiers`
    2. Click on `Add`
    3. Fill in
    `Name` with `PulseAudio Sound System` or something like that and
    `Command` with `start-pulseaudio-x11`
    Thats it!
    Last edited by sh4nks (2013-05-01 07:07:03)

  • [SOLVED] Arch doesn't recognise software RAID0

    Problem solved! See my last reply for the solution.
    Old post follows:
    I currently have Windows installed on a 2x500GB RAID0, with 300GB unallocated space for Arch.
    However, the Arch Live CD doesn't recognise the RAID0 for whatever reason. Or perhaps I've overlooked where it is on the system?
    Arch detects all of my disks and partitions fine, including the two individual 500GB HDDs (/dev/sdc and /dev/sdd) which make up the RAID0.
    Here's some information from a few commands I ran and dumped to a file:
    Disk /dev/sdc: 500.1 GB, 500107862016 bytes
    255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0xe563da78
    Device Boot Start End Blocks Id System
    /dev/sdc1 2048 1323976703 661987328 7 HPFS/NTFS/exFAT
    Disk /dev/sdd: 500.1 GB, 500107862016 bytes
    255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Personalities : [raid0] [raid1] [raid10]
    unused devices: <none>
    00:00.0 Host bridge: Advanced Micro Devices [AMD] nee ATI RD890 PCI to PCI bridge (external gfx0 port B) (rev 02)
    00:02.0 PCI bridge: Advanced Micro Devices [AMD] nee ATI RD890 PCI to PCI bridge (PCI express gpp port B)
    00:05.0 PCI bridge: Advanced Micro Devices [AMD] nee ATI RD890 PCI to PCI bridge (PCI express gpp port E)
    00:0a.0 PCI bridge: Advanced Micro Devices [AMD] nee ATI RD890 PCI to PCI bridge (external gfx1 port A)
    00:11.0 RAID bus controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 SATA Controller [RAID5 mode] (rev 40)
    00:12.0 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:12.2 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:13.0 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:13.2 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:14.0 SMBus: Advanced Micro Devices [AMD] nee ATI SBx00 SMBus Controller (rev 42)
    00:14.1 IDE interface: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 IDE Controller (rev 40)
    00:14.2 Audio device: Advanced Micro Devices [AMD] nee ATI SBx00 Azalia (Intel HDA) (rev 40)
    00:14.3 ISA bridge: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 LPC host controller (rev 40)
    00:14.4 PCI bridge: Advanced Micro Devices [AMD] nee ATI SBx00 PCI to PCI Bridge (rev 40)
    00:14.5 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI2 Controller
    00:16.0 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:16.2 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:18.0 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor HyperTransport Configuration
    00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Address Map
    00:18.2 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor DRAM Controller
    00:18.3 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Miscellaneous Control
    00:18.4 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Link Control
    01:00.0 VGA compatible controller: NVIDIA Corporation GF110 [GeForce GTX 580] (rev a1)
    01:00.1 Audio device: NVIDIA Corporation GF110 High Definition Audio Controller (rev a1)
    02:00.0 USB controller: Etron Technology, Inc. EJ168 USB 3.0 Host Controller (rev 01)
    03:00.0 Ethernet controller: Broadcom Corporation NetLink BCM57781 Gigabit Ethernet PCIe (rev 10)
    /dev/sdb1: LABEL="Neu Mann" UUID="4E2C18BB2C189FCF" TYPE="ntfs"
    /dev/sda1: UUID="2810A17A10A1501C" TYPE="ntfs"
    /dev/sda5: LABEL="kokoro" UUID="B8104FDA104F9E6E" TYPE="ntfs"
    /dev/sr0: LABEL="ARCH_201207" TYPE="iso9660"
    /dev/sdd: TYPE="promise_fasttrack_raid_member"
    /dev/loop0: TYPE="squashfs"
    /dev/loop1: UUID="54d19f93-f878-4a22-9c38-d58dd04ac8a9" TYPE="ext4"
    /dev/loop2: UUID="54d19f93-f878-4a22-9c38-d58dd04ac8a9" TYPE="ext4"
    /dev/loop3: TYPE="squashfs"
    /dev/loop4: UUID="b6be6cf8-15c1-49ee-94f7-8cc33882096e" TYPE="ext4"
    /dev/loop5: UUID="b6be6cf8-15c1-49ee-94f7-8cc33882096e" TYPE="ext4"
    /dev/loop6: TYPE="squashfs"
    /dev/loop7: UUID="42ed7453-0a1a-42c9-b0a6-0de03a3fdfd8" TYPE="ext4"
    /dev/mapper/arch_root-image: UUID="54d19f93-f878-4a22-9c38-d58dd04ac8a9" TYPE="ext4"
    /dev/mapper/arch_lib-modules: UUID="b6be6cf8-15c1-49ee-94f7-8cc33882096e" TYPE="ext4"
    /dev/loop8: UUID="42ed7453-0a1a-42c9-b0a6-0de03a3fdfd8" TYPE="ext4"
    /dev/mapper/arch_usr-share: UUID="42ed7453-0a1a-42c9-b0a6-0de03a3fdfd8" TYPE="ext4"
    *** Set
    name : pdc_chceddecf
    size : 1953124864
    stride : 128
    type : stripe
    status : ok
    subsets: 0
    devs : 2
    spares : 0
    /dev/dm-2: 856064 total, "N/A"
    /dev/dm-1: 192512 total, "N/A"
    /dev/dm-0: 1382400 total, "N/A"
    /dev/sdd: 976773168 total, "WD-WMAYP1968098"
    /dev/sdc: 976773168 total, "WD-WMAYP1090982"
    /dev/sdb: 3907029168 total, "WD-WCAZA0751908"
    /dev/sda: 625142448 total, "VFA200R22ZHXRJ"
    dmesg, messages near the end were generated by me attempting to get the OS to recognise the RAID0:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.4.4-3-ARCH (nobody@rampage) (gcc version 4.7.1 (GCC) ) #1 SMP PREEMPT Tue Jul 3 14:36:44 UTC 2012
    [ 0.000000] Command line: archisobasedir=arch archisolabel=ARCH_201207 initrd=boot/x86_64/archiso.img BOOT_IMAGE=boot/x86_64/vmlinuz
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 0000000000093000 (usable)
    [ 0.000000] BIOS-e820: 0000000000093000 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000dba0a000 (usable)
    [ 0.000000] BIOS-e820: 00000000dfa6a000 - 00000000dfa6d000 (reserved)
    [ 0.000000] BIOS-e820: 00000000dfa6d000 - 00000000dfaf8000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000dfaf8000 - 00000000dfafb000 (reserved)
    [ 0.000000] BIOS-e820: 00000000dfafb000 - 00000000dfafc000 (usable)
    [ 0.000000] BIOS-e820: 00000000dfafc000 - 00000000dfb03000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000dfb03000 - 00000000dfb4d000 (reserved)
    [ 0.000000] BIOS-e820: 00000000dfb4d000 - 00000000dfb55000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000dfb55000 - 00000000dfb7e000 (reserved)
    [ 0.000000] BIOS-e820: 00000000dfb7e000 - 00000000dfd81000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000dfd81000 - 00000000dff00000 (usable)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec10000 - 00000000fec11000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec20000 - 00000000fec21000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed61000 - 00000000fed71000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed80000 - 00000000fed90000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fef00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100093000 - 0000000420000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.6 present.
    [ 0.000000] DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./990FX Extreme3, BIOS P1.40 06/29/2012
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x420000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF write-through
    [ 0.000000] C0000-D8FFF write-protect
    [ 0.000000] D9000-EBFFF uncachable
    [ 0.000000] EC000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000080000000 mask FFFFC0000000 write-back
    [ 0.000000] 2 base 0000C0000000 mask FFFFE0000000 write-back
    [ 0.000000] 3 base 0000DFF00000 mask FFFFFFF00000 uncachable
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 0000000420000000 aka 16896M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 00000000dff00000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0xdff00 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000fd000] fd000
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff88000008e000] 8e000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000dff00000
    [ 0.000000] 0000000000 - 00c0000000 page 1G
    [ 0.000000] 00c0000000 - 00dfe00000 page 2M
    [ 0.000000] 00dfe00000 - 00dff00000 page 4k
    [ 0.000000] kernel direct mapping tables up to dff00000 @ 1fffd000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-0000000420000000
    [ 0.000000] 0100000000 - 0400000000 page 1G
    [ 0.000000] 0400000000 - 0420000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 420000000 @ dfefe000-dff00000
    [ 0.000000] RAMDISK: 7f1be000 - 7ffff000
    [ 0.000000] ACPI: RSDP 00000000000f0450 00024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 00000000dfafc068 00054 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000dfb01380 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20120320/tbfadt-579)
    [ 0.000000] ACPI: DSDT 00000000dfafc150 0522B (v02 ALASKA A M I 00000000 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000dfb4ff80 00040
    [ 0.000000] ACPI: APIC 00000000dfb01478 0009E (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: MCFG 00000000dfb01518 0003C (v01 ALASKA A M I 01072009 MSFT 00010013)
    [ 0.000000] ACPI: AAFT 00000000dfb01558 0003A (v01 ALASKA OEMAAFT 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000dfb01598 00038 (v01 ALASKA A M I 01072009 AMI 00000004)
    [ 0.000000] ACPI: SSDT 00000000dfb015d0 00E10 (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] Scanning NUMA topology in Northbridge 24
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-0000000420000000
    [ 0.000000] Initmem setup node 0 0000000000000000-0000000420000000
    [ 0.000000] NODE_DATA [000000041fffc000 - 000000041fffffff]
    [ 0.000000] [ffffea0000000000-ffffea00107fffff] PMD -> [ffff88040f600000-ffff88041f5fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x00420000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x00000093
    [ 0.000000] 0: 0x00000100 -> 0x000dba0a
    [ 0.000000] 0: 0x000dfafb -> 0x000dfafc
    [ 0.000000] 0: 0x000dfd81 -> 0x000dff00
    [ 0.000000] 0: 0x00100093 -> 0x00420000
    [ 0.000000] On node 0 totalpages: 4176506
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3902 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 879562 pages, LIFO batch:31
    [ 0.000000] Normal zone: 51200 pages used for memmap
    [ 0.000000] Normal zone: 3225453 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec20000] gsi_base[24])
    [ 0.000000] IOAPIC[1]: apic_id 1, version 33, address 0xfec20000, GSI 24-55
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000
    [ 0.000000] SMP: Allowing 8 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 72
    [ 0.000000] PM: Registered nosave memory: 0000000000093000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000dba0a000 - 00000000dfa6a000
    [ 0.000000] PM: Registered nosave memory: 00000000dfa6a000 - 00000000dfa6d000
    [ 0.000000] PM: Registered nosave memory: 00000000dfa6d000 - 00000000dfaf8000
    [ 0.000000] PM: Registered nosave memory: 00000000dfaf8000 - 00000000dfafb000
    [ 0.000000] PM: Registered nosave memory: 00000000dfafc000 - 00000000dfb03000
    [ 0.000000] PM: Registered nosave memory: 00000000dfb03000 - 00000000dfb4d000
    [ 0.000000] PM: Registered nosave memory: 00000000dfb4d000 - 00000000dfb55000
    [ 0.000000] PM: Registered nosave memory: 00000000dfb55000 - 00000000dfb7e000
    [ 0.000000] PM: Registered nosave memory: 00000000dfb7e000 - 00000000dfd81000
    [ 0.000000] PM: Registered nosave memory: 00000000dff00000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    [ 0.000000] PM: Registered nosave memory: 00000000fec11000 - 00000000fec20000
    [ 0.000000] PM: Registered nosave memory: 00000000fec20000 - 00000000fec21000
    [ 0.000000] PM: Registered nosave memory: 00000000fec21000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
    [ 0.000000] PM: Registered nosave memory: 00000000fed01000 - 00000000fed61000
    [ 0.000000] PM: Registered nosave memory: 00000000fed61000 - 00000000fed71000
    [ 0.000000] PM: Registered nosave memory: 00000000fed71000 - 00000000fed80000
    [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
    [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fef00000
    [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 0000000100000000
    [ 0.000000] PM: Registered nosave memory: 0000000100000000 - 0000000100093000
    [ 0.000000] Allocating PCI resources starting at dff00000 (gap: dff00000:1ed00000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88041fc00000 s82880 r8192 d23616 u262144
    [ 0.000000] pcpu-alloc: s82880 r8192 d23616 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4108917
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: archisobasedir=arch archisolabel=ARCH_201207 initrd=boot/x86_64/archiso.img BOOT_IMAGE=boot/x86_64/vmlinuz
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Node 0: aperture @ 4130000000 size 32 MB
    [ 0.000000] Aperture beyond 4GB. Ignoring.
    [ 0.000000] Your BIOS doesn't leave a aperture memory hole
    [ 0.000000] Please enable the IOMMU option in the BIOS setup
    [ 0.000000] This costs you 64 MB of RAM
    [ 0.000000] Mapping aperture over 65536 KB of RAM @ d0000000
    [ 0.000000] PM: Registered nosave memory: 00000000d0000000 - 00000000d4000000
    [ 0.000000] Memory: 16285596k/17301504k available (4538k kernel code, 595480k absent, 420428k reserved, 4308k data, 740k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:1288 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 67108864 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.003333] Detected 3547.978 MHz processor.
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 7098.62 BogoMIPS (lpj=11826593)
    [ 0.000006] pid_max: default: 32768 minimum: 301
    [ 0.000026] Security Framework initialized
    [ 0.000029] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000731] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.005101] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.007113] Mount-cache hash table entries: 256
    [ 0.007267] Initializing cgroup subsys cpuacct
    [ 0.007269] Initializing cgroup subsys memory
    [ 0.007277] Initializing cgroup subsys devices
    [ 0.007278] Initializing cgroup subsys freezer
    [ 0.007279] Initializing cgroup subsys net_cls
    [ 0.007281] Initializing cgroup subsys blkio
    [ 0.007300] tseg: 00dff00000
    [ 0.007302] CPU: Physical Processor ID: 0
    [ 0.007303] CPU: Processor Core ID: 0
    [ 0.007304] mce: CPU supports 6 MCE banks
    [ 0.007309] LVT offset 0 assigned for vector 0xf9
    [ 0.007313] using AMD E400 aware idle routine
    [ 0.007791] ACPI: Core revision 20120320
    [ 0.015073] ftrace: allocating 17820 entries in 70 pages
    [ 0.021336] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.054270] CPU0: AMD Phenom(tm) II X6 1100T Processor stepping 00
    [ 0.158266] Performance Events: AMD PMU driver.
    [ 0.158269] ... version: 0
    [ 0.158270] ... bit width: 48
    [ 0.158270] ... generic registers: 4
    [ 0.158271] ... value mask: 0000ffffffffffff
    [ 0.158272] ... max period: 00007fffffffffff
    [ 0.158273] ... fixed-purpose events: 0
    [ 0.158274] ... event mask: 000000000000000f
    [ 0.158299] System has AMD C1E enabled
    [ 0.158306] Switch to broadcast mode on CPU0
    [ 0.178422] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.198332] Booting Node 0, Processors #1
    [ 0.211445] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.211451] Switch to broadcast mode on CPU1
    [ 0.221660] #2
    [ 0.234770] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.234781] Switch to broadcast mode on CPU2
    [ 0.244919] #3
    [ 0.258028] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.258042] Switch to broadcast mode on CPU3
    [ 0.268211] #4
    [ 0.281321] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.281334] Switch to broadcast mode on CPU4
    [ 0.291515] #5
    [ 0.304626] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.304638] Switch to broadcast mode on CPU5
    [ 0.304673] Brought up 6 CPUs
    [ 0.304683] Total of 6 processors activated (42592.72 BogoMIPS).
    [ 0.311664] devtmpfs: initialized
    [ 0.313435] PM: Registering ACPI NVS region [mem 0xdfa6d000-0xdfaf7fff] (569344 bytes)
    [ 0.313442] PM: Registering ACPI NVS region [mem 0xdfafc000-0xdfb02fff] (28672 bytes)
    [ 0.313444] PM: Registering ACPI NVS region [mem 0xdfb4d000-0xdfb54fff] (32768 bytes)
    [ 0.313446] PM: Registering ACPI NVS region [mem 0xdfb7e000-0xdfd80fff] (2109440 bytes)
    [ 0.313901] NET: Registered protocol family 16
    [ 0.313971] node 0 link 0: io port [e000, ffff]
    [ 0.313973] TOM: 00000000e0000000 aka 3584M
    [ 0.313975] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
    [ 0.313976] node 0 link 0: mmio [e0000000, fef0ffff] ==> [f0000000, fef0ffff]
    [ 0.313978] TOM2: 0000000420000000 aka 16896M
    [ 0.313980] bus: [00, 1f] on node 0 link 0
    [ 0.313981] bus: 00 index 0 [io 0x0000-0xffff]
    [ 0.313982] bus: 00 index 1 [mem 0xf0000000-0xffffffff]
    [ 0.313983] bus: 00 index 2 [mem 0x420000000-0xfcffffffff]
    [ 0.314067] ACPI: bus type pci registered
    [ 0.314108] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.314111] PCI: not using MMCONFIG
    [ 0.314112] PCI: Using configuration type 1 for base access
    [ 0.314113] PCI: Using configuration type 1 for extended access
    [ 0.314717] bio: create slab <bio-0> at 0
    [ 0.314765] ACPI: Added _OSI(Module Device)
    [ 0.314766] ACPI: Added _OSI(Processor Device)
    [ 0.314767] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.314769] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.315210] ACPI: EC: Look up EC in DSDT
    [ 0.315672] ACPI: Executed 3 blocks of module-level executable AML code
    [ 0.317213] ACPI: Interpreter enabled
    [ 0.317217] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.317234] ACPI: Using IOAPIC for interrupt routing
    [ 0.317334] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.317359] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.338488] ACPI: No dock devices found.
    [ 0.338492] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.338555] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.338648] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.338649] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 0.338651] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.338652] pci_root PNP0A03:00: host bridge window [mem 0x000c8000-0x000dffff]
    [ 0.338653] pci_root PNP0A03:00: host bridge window [mem 0xe0000000-0xffffffff]
    [ 0.338673] PCI host bridge to bus 0000:00
    [ 0.338675] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.338676] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.338677] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.338679] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000dffff]
    [ 0.338680] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xffffffff]
    [ 0.338689] pci 0000:00:00.0: [1002:5a14] type 00 class 0x060000
    [ 0.338736] pci 0000:00:02.0: [1002:5a16] type 01 class 0x060400
    [ 0.338761] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.338774] pci 0000:00:05.0: [1002:5a19] type 01 class 0x060400
    [ 0.338797] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
    [ 0.338811] pci 0000:00:0a.0: [1002:5a1d] type 01 class 0x060400
    [ 0.338834] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    [ 0.338854] pci 0000:00:11.0: [1002:4393] type 00 class 0x010400
    [ 0.338869] pci 0000:00:11.0: reg 10: [io 0xf090-0xf097]
    [ 0.338877] pci 0000:00:11.0: reg 14: [io 0xf080-0xf083]
    [ 0.338884] pci 0000:00:11.0: reg 18: [io 0xf070-0xf077]
    [ 0.338891] pci 0000:00:11.0: reg 1c: [io 0xf060-0xf063]
    [ 0.338899] pci 0000:00:11.0: reg 20: [io 0xf050-0xf05f]
    [ 0.338906] pci 0000:00:11.0: reg 24: [mem 0xfe30b000-0xfe30b3ff]
    [ 0.338952] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    [ 0.338962] pci 0000:00:12.0: reg 10: [mem 0xfe30a000-0xfe30afff]
    [ 0.339018] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    [ 0.339033] pci 0000:00:12.2: reg 10: [mem 0xfe309000-0xfe3090ff]
    [ 0.339098] pci 0000:00:12.2: supports D1 D2
    [ 0.339099] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.339116] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    [ 0.339126] pci 0000:00:13.0: reg 10: [mem 0xfe308000-0xfe308fff]
    [ 0.339183] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    [ 0.339197] pci 0000:00:13.2: reg 10: [mem 0xfe307000-0xfe3070ff]
    [ 0.339262] pci 0000:00:13.2: supports D1 D2
    [ 0.339263] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.339281] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    [ 0.339338] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
    [ 0.339348] pci 0000:00:14.1: reg 10: [io 0xf040-0xf047]
    [ 0.339355] pci 0000:00:14.1: reg 14: [io 0xf030-0xf033]
    [ 0.339363] pci 0000:00:14.1: reg 18: [io 0xf020-0xf027]
    [ 0.339370] pci 0000:00:14.1: reg 1c: [io 0xf010-0xf013]
    [ 0.339377] pci 0000:00:14.1: reg 20: [io 0xf000-0xf00f]
    [ 0.339407] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    [ 0.339423] pci 0000:00:14.2: reg 10: [mem 0xfe300000-0xfe303fff 64bit]
    [ 0.339475] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.339486] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    [ 0.339546] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    [ 0.339578] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    [ 0.339588] pci 0000:00:14.5: reg 10: [mem 0xfe306000-0xfe306fff]
    [ 0.339641] pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
    [ 0.339652] pci 0000:00:16.0: reg 10: [mem 0xfe305000-0xfe305fff]
    [ 0.339708] pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
    [ 0.339722] pci 0000:00:16.2: reg 10: [mem 0xfe304000-0xfe3040ff]
    [ 0.339787] pci 0000:00:16.2: supports D1 D2
    [ 0.339788] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    [ 0.339804] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
    [ 0.339815] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
    [ 0.339824] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
    [ 0.339833] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
    [ 0.339844] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
    [ 0.339881] pci 0000:01:00.0: [10de:1080] type 00 class 0x030000
    [ 0.339889] pci 0000:01:00.0: reg 10: [mem 0xfd000000-0xfdffffff]
    [ 0.339897] pci 0000:01:00.0: reg 14: [mem 0xf0000000-0xf7ffffff 64bit pref]
    [ 0.339905] pci 0000:01:00.0: reg 1c: [mem 0xf8000000-0xf9ffffff 64bit pref]
    [ 0.339910] pci 0000:01:00.0: reg 24: [io 0xe000-0xe07f]
    [ 0.339915] pci 0000:01:00.0: reg 30: [mem 0xfe000000-0xfe07ffff pref]
    [ 0.339959] pci 0000:01:00.1: [10de:0e09] type 00 class 0x040300
    [ 0.339966] pci 0000:01:00.1: reg 10: [mem 0xfe080000-0xfe083fff]
    [ 0.344680] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 0.344692] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.344701] pci 0000:00:02.0: bridge window [mem 0xfd000000-0xfe0fffff]
    [ 0.344710] pci 0000:00:02.0: bridge window [mem 0xf0000000-0xf9ffffff 64bit pref]
    [ 0.344780] pci 0000:02:00.0: [1b6f:7023] type 00 class 0x0c0330
    [ 0.344805] pci 0000:02:00.0: reg 10: [mem 0xfe200000-0xfe207fff 64bit]
    [ 0.344890] pci 0000:02:00.0: supports D1 D2
    [ 0.344892] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.351338] pci 0000:00:05.0: PCI bridge to [bus 02-02]
    [ 0.351351] pci 0000:00:05.0: bridge window [mem 0xfe200000-0xfe2fffff]
    [ 0.351422] pci 0000:03:00.0: [14e4:16b1] type 00 class 0x020000
    [ 0.351450] pci 0000:03:00.0: reg 10: [mem 0xfa110000-0xfa11ffff 64bit pref]
    [ 0.351471] pci 0000:03:00.0: reg 18: [mem 0xfa100000-0xfa10ffff 64bit pref]
    [ 0.351504] pci 0000:03:00.0: reg 30: [mem 0xfe100000-0xfe1007ff pref]
    [ 0.351567] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.357977] pci 0000:00:0a.0: PCI bridge to [bus 03-03]
    [ 0.357989] pci 0000:00:0a.0: bridge window [mem 0xfe100000-0xfe1fffff]
    [ 0.357998] pci 0000:00:0a.0: bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
    [ 0.358075] pci 0000:00:14.4: PCI bridge to [bus 04-04] (subtractive decode)
    [ 0.358089] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.358095] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.358101] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.358107] pci 0000:00:14.4: bridge window [mem 0x000c8000-0x000dffff] (subtractive decode)
    [ 0.358113] pci 0000:00:14.4: bridge window [mem 0xe0000000-0xffffffff] (subtractive decode)
    [ 0.358139] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.358305] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PC02._PRT]
    [ 0.358321] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PC05._PRT]
    [ 0.358337] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PC0A._PRT]
    [ 0.358363] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PC._PRT]
    [ 0.358397] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.358399] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [ 0.358400] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.360697] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11 14 15) *0
    [ 0.360732] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11 14 15) *0
    [ 0.360767] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11 14 15) *0
    [ 0.360802] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11 14 15) *0
    [ 0.360828] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11 14 15) *0
    [ 0.360846] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11 14 15) *0
    [ 0.360865] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11 14 15) *0
    [ 0.360884] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11 14 15) *0
    [ 0.360953] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.360955] vgaarb: loaded
    [ 0.360956] vgaarb: bridge control possible 0000:01:00.0
    [ 0.360983] PCI: Using ACPI for IRQ routing
    [ 0.367781] PCI: pci_cache_line_size set to 64 bytes
    [ 0.367833] reserve RAM buffer: 0000000000093000 - 000000000009ffff
    [ 0.367835] reserve RAM buffer: 00000000dba0a000 - 00000000dbffffff
    [ 0.367836] reserve RAM buffer: 00000000dfafc000 - 00000000dfffffff
    [ 0.367838] reserve RAM buffer: 00000000dff00000 - 00000000dfffffff
    [ 0.367938] NetLabel: Initializing
    [ 0.367940] NetLabel: domain hash size = 128
    [ 0.367940] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.367949] NetLabel: unlabeled traffic allowed by default
    [ 0.367961] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.367963] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.370985] Switching to clocksource hpet
    [ 0.374470] pnp: PnP ACPI init
    [ 0.374479] ACPI: bus type pnp registered
    [ 0.374557] pnp 00:00: [bus 00-ff]
    [ 0.374561] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.374563] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.374567] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.374571] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.374572] pnp 00:00: [mem 0x000c8000-0x000dffff window]
    [ 0.374573] pnp 00:00: [mem 0xe0000000-0xffffffff window]
    [ 0.374574] pnp 00:00: [mem 0x00000000 window]
    [ 0.374603] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.374619] pnp 00:01: [mem 0xe0000000-0xefffffff]
    [ 0.374647] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.374649] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.374771] pnp 00:02: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.374773] pnp 00:02: [mem 0xfec20000-0xfec200ff]
    [ 0.374794] system 00:02: [mem 0xfec20000-0xfec200ff] could not be reserved
    [ 0.374796] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.374819] pnp 00:03: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.374839] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.374945] pnp 00:04: [io 0x040b]
    [ 0.374946] pnp 00:04: [io 0x04d6]
    [ 0.374947] pnp 00:04: [io 0x0c00-0x0c01]
    [ 0.374948] pnp 00:04: [io 0x0c14]
    [ 0.374949] pnp 00:04: [io 0x0c50-0x0c51]
    [ 0.374950] pnp 00:04: [io 0x0c52]
    [ 0.374951] pnp 00:04: [io 0x0c6c]
    [ 0.374952] pnp 00:04: [io 0x0c6f]
    [ 0.374953] pnp 00:04: [io 0x0cd0-0x0cd1]
    [ 0.374954] pnp 00:04: [io 0x0cd2-0x0cd3]
    [ 0.374955] pnp 00:04: [io 0x0cd4-0x0cd5]
    [ 0.374956] pnp 00:04: [io 0x0cd6-0x0cd7]
    [ 0.374957] pnp 00:04: [io 0x0cd8-0x0cdf]
    [ 0.374957] pnp 00:04: [io 0x0800-0x089f]
    [ 0.374959] pnp 00:04: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.374960] pnp 00:04: [io 0x0000-0x000f]
    [ 0.374961] pnp 00:04: [io 0x0b20-0x0b3f]
    [ 0.374962] pnp 00:04: [io 0x0900-0x090f]
    [ 0.374963] pnp 00:04: [io 0x0910-0x091f]
    [ 0.374964] pnp 00:04: [io 0xfe00-0xfefe]
    [ 0.374965] pnp 00:04: [io 0x0060-0x005f disabled]
    [ 0.374966] pnp 00:04: [io 0x0064-0x0063 disabled]
    [ 0.374967] pnp 00:04: [mem 0xfec00000-0xfec00fff]
    [ 0.374968] pnp 00:04: [mem 0xfee00000-0xfee00fff]
    [ 0.374969] pnp 00:04: [mem 0xfed80000-0xfed8ffff]
    [ 0.374970] pnp 00:04: [mem 0xfed61000-0xfed70fff]
    [ 0.374971] pnp 00:04: [mem 0xfec10000-0xfec10fff]
    [ 0.374972] pnp 00:04: [mem 0xfed00000-0xfed00fff]
    [ 0.374973] pnp 00:04: [mem 0xffc00000-0xffffffff]
    [ 0.375010] system 00:04: [io 0x040b] has been reserved
    [ 0.375011] system 00:04: [io 0x04d6] has been reserved
    [ 0.375012] system 00:04: [io 0x0c00-0x0c01] has been reserved
    [ 0.375014] system 00:04: [io 0x0c14] has been reserved
    [ 0.375015] system 00:04: [io 0x0c50-0x0c51] has been reserved
    [ 0.375016] system 00:04: [io 0x0c52] has been reserved
    [ 0.375017] system 00:04: [io 0x0c6c] has been reserved
    [ 0.375019] system 00:04: [io 0x0c6f] has been reserved
    [ 0.375020] system 00:04: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.375021] system 00:04: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.375022] system 00:04: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.375024] system 00:04: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.375025] system 00:04: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.375026] system 00:04: [io 0x0800-0x089f] has been reserved
    [ 0.375028] system 00:04: [io 0x0b20-0x0b3f] has been reserved
    [ 0.375029] system 00:04: [io 0x0900-0x090f] has been reserved
    [ 0.375030] system 00:04: [io 0x0910-0x091f] has been reserved
    [ 0.375032] system 00:04: [io 0xfe00-0xfefe] has been reserved
    [ 0.375034] system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.375035] system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.375037] system 00:04: [mem 0xfed80000-0xfed8ffff] has been reserved
    [ 0.375038] system 00:04: [mem 0xfed61000-0xfed70fff] has been reserved
    [ 0.375040] system 00:04: [mem 0xfec10000-0xfec10fff] has been reserved
    [ 0.375041] system 00:04: [mem 0xfed00000-0xfed00fff] has been reserved
    [ 0.375043] system 00:04: [mem 0xffc00000-0xffffffff] has been reserved
    [ 0.375044] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.375070] pnp 00:05: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.375071] pnp 00:05: [io 0x0290-0x029f]
    [ 0.375073] pnp 00:05: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.375097] system 00:05: [io 0x0290-0x029f] has been reserved
    [ 0.375098] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.375202] pnp 00:06: [dma 4]
    [ 0.375203] pnp 00:06: [io 0x0000-0x000f]
    [ 0.375205] pnp 00:06: [io 0x0081-0x0083]
    [ 0.375206] pnp 00:06: [io 0x0087]
    [ 0.375207] pnp 00:06: [io 0x0089-0x008b]
    [ 0.375208] pnp 00:06: [io 0x008f]
    [ 0.375209] pnp 00:06: [io 0x00c0-0x00df]
    [ 0.375224] pnp 00:06: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.375229] pnp 00:07: [io 0x0070-0x0071]
    [ 0.375236] pnp 00:07: [irq 8]
    [ 0.375249] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.375253] pnp 00:08: [io 0x0061]
    [ 0.375267] pnp 00:08: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.375275] pnp 00:09: [io 0x0010-0x001f]
    [ 0.375276] pnp 00:09: [io 0x0022-0x003f]
    [ 0.375277] pnp 00:09: [io 0x0044-0x005f]
    [ 0.375278] pnp 00:09: [io 0x0062-0x0063]
    [ 0.375279] pnp 00:09: [io 0x0065-0x006f]
    [ 0.375280] pnp 00:09: [io 0x0072-0x007f]
    [ 0.375281] pnp 00:09: [io 0x0080]
    [ 0.375282] pnp 00:09: [io 0x0084-0x0086]
    [ 0.375283] pnp 00:09: [io 0x0088]
    [ 0.375283] pnp 00:09: [io 0x008c-0x008e]
    [ 0.375284] pnp 00:09: [io 0x0090-0x009f]
    [ 0.375285] pnp 00:09: [io 0x00a2-0x00bf]
    [ 0.375286] pnp 00:09: [io 0x00e0-0x00ef]
    [ 0.375287] pnp 00:09: [io 0x04d0-0x04d1]
    [ 0.375314] system 00:09: [io 0x04d0-0x04d1] has been reserved
    [ 0.375316] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.375320] pnp 00:0a: [io 0x00f0-0x00ff]
    [ 0.375323] pnp 00:0a: [irq 13]
    [ 0.375337] pnp 00:0a: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.375366] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.375489] pnp 00:0c: [io 0x03f8-0x03ff]
    [ 0.375492] pnp 00:0c: [irq 4]
    [ 0.375493] pnp 00:0c: [dma 0 disabled]
    [ 0.375524] pnp 00:0c: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.375590] pnp 00:0d: [mem 0xfed00000-0xfed003ff]
    [ 0.375609] pnp 00:0d: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.375611] pnp: PnP ACPI: found 14 devices
    [ 0.375612] ACPI: ACPI bus type pnp unregistered
    [ 0.381875] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 0.381877] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.381879] pci 0000:00:02.0: bridge window [mem 0xfd000000-0xfe0fffff]
    [ 0.381881] pci 0000:00:02.0: bridge window [mem 0xf0000000-0xf9ffffff 64bit pref]
    [ 0.381884] pci 0000:00:05.0: PCI bridge to [bus 02-02]
    [ 0.381886] pci 0000:00:05.0: bridge window [mem 0xfe200000-0xfe2fffff]
    [ 0.381889] pci 0000:00:0a.0: PCI bridge to [bus 03-03]
    [ 0.381891] pci 0000:00:0a.0: bridge window [mem 0xfe100000-0xfe1fffff]
    [ 0.381893] pci 0000:00:0a.0: bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
    [ 0.381895] pci 0000:00:14.4: PCI bridge to [bus 04-04]
    [ 0.381922] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.381923] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.381925] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.381926] pci_bus 0000:00: resource 7 [mem 0x000c8000-0x000dffff]
    [ 0.381927] pci_bus 0000:00: resource 8 [mem 0xe0000000-0xffffffff]
    [ 0.381928] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.381930] pci_bus 0000:01: resource 1 [mem 0xfd000000-0xfe0fffff]
    [ 0.381931] pci_bus 0000:01: resource 2 [mem 0xf0000000-0xf9ffffff 64bit pref]
    [ 0.381932] pci_bus 0000:02: resource 1 [mem 0xfe200000-0xfe2fffff]
    [ 0.381934] pci_bus 0000:03: resource 1 [mem 0xfe100000-0xfe1fffff]
    [ 0.381935] pci_bus 0000:03: resource 2 [mem 0xfa100000-0xfa1fffff 64bit pref]
    [ 0.381936] pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    [ 0.381937] pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    [ 0.381939] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.381940] pci_bus 0000:04: resource 7 [mem 0x000c8000-0x000dffff]
    [ 0.381941] pci_bus 0000:04: resource 8 [mem 0xe0000000-0xffffffff]
    [ 0.381970] NET: Registered protocol family 2
    [ 0.382171] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.383495] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.385589] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.385848] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.385850] TCP: reno registered
    [ 0.385863] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.385947] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.386083] NET: Registered protocol family 1
    [ 0.693943] pci 0000:01:00.0: Boot video device
    [ 0.694042] PCI: CLS 64 bytes, default 64
    [ 0.694145] Unpacking initramfs...
    [ 1.743084] Freeing initrd memory: 14596k freed
    [ 1.747910] PCI-DMA: Disabling AGP.
    [ 1.748019] PCI-DMA: aperture base @ d0000000 size 65536 KB
    [ 1.748020] PCI-DMA: using GART IOMMU.
    [ 1.748022] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    [ 1.751082] LVT offset 1 assigned for vector 0x400
    [ 1.751090] IBS: LVT offset 1 assigned
    [ 1.751117] perf: AMD IBS detected (0x0000001f)
    [ 1.751254] audit: initializing netlink socket (disabled)
    [ 1.751263] type=2000 audit(1346165429.643:1): initialized
    [ 1.752226] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.754614] VFS: Disk quotas dquot_6.5.2
    [ 1.754642] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.754742] msgmni has been set to 31965
    [ 1.754996] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 1.755035] io scheduler noop registered
    [ 1.755036] io scheduler deadline registered
    [ 1.755067] io scheduler cfq registered (default)
    [ 1.755441] GHES: HEST is not enabled!
    [ 1.755524] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.776028] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 1.796745] 00:0c: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 1.796898] Linux agpgart interface v0.103
    [ 1.796939] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 1.799184] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.799201] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.799378] mousedev: PS/2 mouse device common for all mice
    [ 1.799416] rtc_cmos 00:07: RTC can wake from S4
    [ 1.799536] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
    [ 1.799559] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 1.799568] cpuidle: using governor ladder
    [ 1.799569] cpuidle: using governor menu
    [ 1.799662] TCP: cubic registered
    [ 1.799729] NET: Registered protocol family 10
    [ 1.799851] NET: Registered protocol family 17
    [ 1.799854] Registering the dns_resolver key type
    [ 1.799960] PM: Hibernation image not present or could not be loaded.
    [ 1.799964] registered taskstats version 1
    [ 1.800940] rtc_cmos 00:07: setting system clock to 2012-08-28 14:50:29 UTC (1346165429)
    [ 1.800981] Initializing network drop monitor service
    [ 1.822527] Freeing unused kernel memory: 740k freed
    [ 1.822649] Write protecting the kernel read-only data: 8192k
    [ 1.825648] Freeing unused kernel memory: 1588k freed
    [ 1.827239] Freeing unused kernel memory: 640k freed
    [ 1.834108] systemd-udevd[85]: starting version 186
    [ 1.844450] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
    [ 1.844477] ACPI: Power Button [PWRB]
    [ 1.844867] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
    [ 1.844874] ACPI: Power Button [PWRF]
    [ 1.845424] wmi: Mapper loaded
    [ 1.851862] SCSI subsystem initialized
    [ 1.852312] usbcore: registered new interface driver usbfs
    [ 1.852333] usbcore: registered new interface driver hub
    [ 1.852480] usbcore: registered new device driver usb
    [ 1.853090] libata version 3.00 loaded.
    [ 1.854235] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.854486] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 1.854516] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    [ 1.854526] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 1.854550] QUIRK: Enable AMD PLL fix
    [ 1.854561] ehci_hcd 0000:00:12.2: debug port 1
    [ 1.854584] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe309000
    [ 1.855984] [drm] Initialized drm 1.1.0 20060810
    [ 1.856315] tg3.c:v3.123 (March 21, 2012)
    [ 1.860078] xhci_hcd 0000:02:00.0: xHCI Host Controller
    [ 1.860126] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
    [ 1.860220] xhci_hcd 0000:02:00.0: irq 46, io mem 0xfe200000
    [ 1.860271] xhci_hcd 0000:02:00.0: irq 72 for MSI/MSI-X
    [ 1.860497] xHCI xhci_add_endpoint called for root hub
    [ 1.860498] xHCI xhci_check_bandwidth called for root hub
    [ 1.860549] hub 2-0:1.0: USB hub found
    [ 1.860554] hub 2-0:1.0: 2 ports detected
    [ 1.860633] MXM: GUID detected in BIOS
    [ 1.860702] xhci_hcd 0000:02:00.0: xHCI Host Controller
    [ 1.860707] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 3
    [ 1.861017] [drm] nouveau 0000:01:00.0: Detected an NVc0 generation card (0x0c8000a1)
    [ 1.861356] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 1.864189] [drm] nouveau 0000:01:00.0: Checking PRAMIN for VBIOS
    [ 1.864478] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 1.864657] xHCI xhci_add_endpoint called for root hub
    [ 1.864659] xHCI xhci_check_bandwidth called for root hub
    [ 1.864756] hub 3-0:1.0: USB hub found
    [ 1.864761] hub 3-0:1.0: 2 ports detected
    [ 1.865261] hub 1-0:1.0: USB hub found
    [ 1.865263] hub 1-0:1.0: 5 ports detected
    [ 1.871931] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 1.871944] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4
    [ 1.871951] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 1.872006] ehci_hcd 0000:00:13.2: debug port 1
    [ 1.872019] ehci_hcd 0000:00:13.2: irq 17, io mem 0xfe307000
    [ 1.872214] tg3 0000:03:00.0: eth0: Tigon3 [partno(BCM57781) rev 57785100] (PCI Express) MAC address 00:25:22:fb:07:f2
    [ 1.872217] tg3 0000:03:00.0: eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
    [ 1.872219] tg3 0000:03:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
    [ 1.872221] tg3 0000:03:00.0: eth0: dma_rwctrl[00000001] dma_mask[64-bit]
    [ 1.881056] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 1.881233] hub 4-0:1.0: USB hub found
    [ 1.881235] hub 4-0:1.0: 5 ports detected
    [ 1.891094] ehci_hcd 0000:00:16.2: EHCI Host Controller
    [ 1.891099] ehci_hcd 0000:00:16.2: new USB bus registered, assigned bus number 5
    [ 1.891107] ehci_hcd 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 1.891127] ehci_hcd 0000:00:16.2: debug port 1
    [ 1.891136] ehci_hcd 0000:00:16.2: irq 17, io mem 0xfe304000
    [ 1.901001] ehci_hcd 0000:00:16.2: USB 2.0 started, EHCI 1.00
    [ 1.901109] hub 5-0:1.0: USB hub found
    [ 1.901111] hub 5-0:1.0: 4 ports detected
    [ 1.911181] ahci 0000:00:11.0: version 3.0
    [ 1.911290] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 4 ports 6 Gbps 0xf impl RAID mode
    [ 1.911293] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    [ 1.911843] scsi0 : ahci
    [ 1.911924] scsi1 : ahci
    [ 1.911982] scsi2 : ahci
    [ 1.912040] scsi3 : ahci
    [ 1.912074] ata1: SATA max UDMA/133 abar m1024@0xfe30b000 port 0xfe30b100 irq 19
    [ 1.912077] ata2: SATA max UDMA/133 abar m1024@0xfe30b000 port 0xfe30b180 irq 19
    [ 1.912079] ata3: SATA max UDMA/133 abar m1024@0xfe30b000 port 0xfe30b200 irq 19
    [ 1.912081] ata4: SATA max UDMA/133 abar m1024@0xfe30b000 port 0xfe30b280 irq 19
    [ 1.924354] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 1.924361] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 6
    [ 1.924379] ohci_hcd 0000:00:12.0: irq 18, io mem 0xfe30a000
    [ 1.968684] [drm] nouveau 0000:01:00.0: ... appears to be valid
    [ 1.968685] [drm] nouveau 0000:01:00.0: Using VBIOS from PRAMIN
    [ 1.968687] [drm] nouveau 0000:01:00.0: BIT BIOS found
    [ 1.968689] [drm] nouveau 0000:01:00.0: Bios version 70.10.17.00
    [ 1.968691] [drm] nouveau 0000:01:00.0: TMDS table version 2.0
    [ 1.968824] [drm] nouveau 0000:01:00.0: MXM: no VBIOS data, nothing to do
    [ 1.968825] [drm] nouveau 0000:01:00.0: DCB version 4.0
    [ 1.968827] [drm] nouveau 0000:01:00.0: DCB outp 00: 02000300 00000000
    [ 1.968828] [drm] nouveau 0000:01:00.0: DCB outp 01: 01000302 00020030
    [ 1.968830] [drm] nouveau 0000:01:00.0: DCB outp 02: 04011380 00000000
    [ 1.968831] [drm] nouveau 0000:01:00.0: DCB outp 03: 08011382 00020030
    [ 1.968832] [drm] nouveau 0000:01:00.0: DCB outp 04: 02022362 00020010
    [ 1.968834] [drm] nouveau 0000:01:00.0: DCB conn 00: 00001030
    [ 1.968835] [drm] nouveau 0000:01:00.0: DCB conn 01: 00010130
    [ 1.968836] [drm] nouveau 0000:01:00.0: DCB conn 02: 00002261
    [ 1.968840] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0x69CF
    [ 1.981590] hub 6-0:1.0: USB hub found
    [ 1.981594] hub 6-0:1.0: 5 ports detected
    [ 1.990810] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 1.990815] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 7
    [ 1.990825] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe308000
    [ 1.993669] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0x706F
    [ 2.001030] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0x84CC
    [ 2.001032] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0x84D6
    [ 2.001107] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0x874A
    [ 2.001108] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table at offset 0x87AF
    [ 2.021077] [drm] nouveau 0000:01:00.0: 0x87AF: Condition still not met after 20ms, skipping following opcodes
    [ 2.022345] [TTM] Zone kernel: Available graphics memory: 8184556 kiB
    [ 2.022346] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
    [ 2.022348] [TTM] Initializing pool allocator
    [ 2.022351] [TTM] Initializing DMA pool allocator
    [ 2.022357] [drm] nouveau 0000:01:00.0: Detected 1536MiB VRAM (GDDR5)
    [ 2.028259] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
    [ 2.032862] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.032863] [drm] No driver support for vblank timestamp query.
    [ 2.038267] [drm] nouveau 0000:01:00.0: 0 available performance level(s)
    [ 2.038270] [drm] nouveau 0000:01:00.0: c: core 50MHz shader 101MHz memory 135MHz voltage 963mV fanspeed 50%
    [ 2.048148] hub 7-0:1.0: USB hub found
    [ 2.048153] hub 7-0:1.0: 5 ports detected
    [ 2.057333] ohci_hcd 0000:00:14.5: OHCI Host Controller
    [ 2.057339] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 8
    [ 2.057352] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe306000
    [ 2.114631] hub 8-0:1.0: USB hub found
    [ 2.114635] hub 8-0:1.0: 2 ports detected
    [ 2.123850] ohci_hcd 0000:00:16.0: OHCI Host Controller
    [ 2.123856] ohci_hcd 0000:00:16.0: new USB bus registered, assigned bus number 9
    [ 2.123865] ohci_hcd 0000:00:16.0: irq 18, io mem 0xfe305000
    [ 2.181148] hub 9-0:1.0: USB hub found
    [ 2.181153] hub 9-0:1.0: 4 ports detected
    [ 2.190648] scsi4 : pata_atiixp
    [ 2.190752] scsi5 : pata_atiixp
    [ 2.190846] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
    [ 2.190847] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
    [ 2.293094] [drm] nouveau 0000:01:00.0: allocated 1920x1080 fb: 0x1e0000, bo ffff88040818f800
    [ 2.293163] fbcon: nouveaufb (fb0) is primary device
    [ 2.335049] Console: switching to colour frame buffer device 160x64
    [ 2.341510] fb0: nouveaufb frame buffer device
    [ 2.341511] drm: registered panic notifier
    [ 2.341514] [drm] Initialized nouveau 1.0.0 20120316 for 0000:01:00.0 on minor 0
    [ 2.360391] ata5.00: ATAPI: TSSTcorp DVDWBD SH-B123L, SB01, max UDMA/100
    [ 2.360395] ata5.00: limited to UDMA/33 due to 40-wire cable
    [ 2.373688] ata5.00: configured for UDMA/33
    [ 2.396639] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.396693] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.396744] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.396801] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.397615] ata1.00: ATA-7: Hitachi HDT725032VLA380, V54OA58A, max UDMA/133
    [ 2.397625] ata1.00: 625142448 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 2.398801] ata1.00: configured for UDMA/133
    [ 2.398954] scsi 0:0:0:0: Direct-Access ATA Hitachi HDT72503 V54O PQ: 0 ANSI: 5
    [ 2.404632] ata3.00: ATA-8: WDC WD5003ABYX-01WERA0, 01.01S01, max UDMA/133
    [ 2.404641] ata3.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 2.405659] ata3.00: configured for UDMA/133
    [ 2.408673] ata4.00: ATA-8: WDC WD5003ABYX-01WERA0, 01.01S01, max UDMA/133
    [ 2.408681] ata4.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 2.409685] ata4.00: configured for UDMA/133
    [ 2.632821] usb 6-1: new full-speed USB device number 2 using ohci_hcd
    [ 2.749232] Refined TSC clocksource calibration: 3547.662 MHz.
    [ 2.749249] Switching to clocksource tsc
    [ 2.797377] ata2.00: ATA-8: WDC WD20EARS-00MVWB0, 51.0AB51, max UDMA/133
    [ 2.797385] ata2.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 2.800668] ata2.00: configured for UDMA/133
    [ 2.800848] scsi 1:0:0:0: Direct-Access ATA WDC WD20EARS-00M 51.0 PQ: 0 ANSI: 5
    [ 2.801117] scsi 2:0:0:0: Direct-Access ATA WDC WD5003ABYX-0 01.0 PQ: 0 ANSI: 5
    [ 2.801300] scsi 3:0:0:0: Direct-Access ATA WDC WD5003ABYX-0 01.0 PQ: 0 ANSI: 5
    [ 2.802197] scsi 4:0:0:0: CD-ROM TSSTcorp DVDWBD SH-B123L SB01 PQ: 0 ANSI: 5
    [ 2.808878] input: Logitech G500 as /devices/pci0000:00/0000:00:12.0/usb6/6-1/6-1:1.0/input/input2
    [ 2.808951] generic-usb 0003:046D:C068.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech G500] on usb-0000:00:12.0-1/input0
    [ 2.810014] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 2.810063] sd 1:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 2.810071] sd 2:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 2.810099] sd 1:0:0:0: [sdb] Write Protect is off
    [ 2.810103] sd 3:0:0:0: [sdd] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 2.810108] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.810111] sd 2:0:0:0: [sdc] Write Protect is off
    [ 2.810114] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.810117] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
    [ 2.810120] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 2.810131] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.810134] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.810138] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.810150] sd 3:0:0:0: [sdd] Write Protect is off
    [ 2.810152] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
    [ 2.810176] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.813047] sr0: scsi3-mmc drive: 48x/40x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.813050] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.813450] sr 4:0:0:0: Attached scsi CD-ROM sr0
    [ 2.815327] sdc: sdc1
    [ 2.815338] sdc: p1 size 1323974656 extends beyond EOD, enabling native capacity
    [ 2.815862] sdc: sdc1
    [ 2.815864] sdc: p1 size 1323974656 extends beyond EOD, truncated
    [ 2.816306] sd 2:0:0:0: [sdc] Attached SCSI disk
    [ 2.820604] sdd: unknown partition table
    [ 2.820852] input: Logitech G500 as /devices/pci0000:00/0000:00:12.0/usb6/6-1/6-1:1.1/input/input3
    [ 2.821030] generic-usb 0003:046D:C068.0002: input,hiddev0,hidraw1: USB HID v1.11 Keyboard [Logitech G500] on usb-0000:00:12.0-1/input1
    [ 2.821049] usbcore: registered new interface driver usbhid
    [ 2.821051] usbhid: USB HID core driver
    [ 2.821054] sd 3:0:0:0: [sdd] Attached SCSI disk
    [ 2.842563] sda: sda1 sda2 < sda5 >
    [ 2.843060] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.850498] sdb: sdb1
    [ 2.850966] sd 1:0:0:0: [sdb] Attached SCSI disk
    [ 3.048555] usb 6-2: new full-speed USB device number 3 using ohci_hcd
    [ 3.226120] input: Microsoft Microsoft® SiderWinderTM X4 Keyboard as /devices/pci0000:00/0000:00:12.0/usb6/6-2/6-2:1.0/input/input4
    [ 3.226175] generic-usb 0003:045E:0768.0003: input,hidraw2: USB HID v1.11 Keyboard [Microsoft Microsoft® SiderWinderTM X4 Keyboard] on usb-0000:00:12.0-2/input0
    [ 3.243889] input: Microsoft Microsoft® SiderWinderTM X4 Keyboard as /devices/pci0000:00/0000:00:12.0/usb6/6-2/6-2:1.1/input/input5
    [ 3.243936] generic-usb 0003:045E:0768.0004: input,hidraw3: USB HID v1.11 Keyboard [Microsoft Microsoft® SiderWinderTM X4 Keyboard] on usb-0000:00:12.0-2/input1
    [ 3.490898] usb 7-2: new full-speed USB device number 2 using ohci_hcd
    [ 5.063613] input: Logitech Logitech G930 Headset as /devices/pci0000:00/0000:00:13.0/usb7/7-2/7-2:1.3/input/input6
    [ 5.063736] generic-usb 0003:046D:0A1F.0005: input,hiddev0,hidraw4: USB HID v1.01 Device [Logitech Logitech G930 Headset] on usb-0000:00:13.0-2/input3
    [ 6.475469] ISO 9660 Extensions: RRIP_1991A
    [ 6.597054] loop: module loaded
    [ 7.533161] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [ 7.538096] device-mapper: uevent: version 1.0.3
    [ 7.538248] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: [email protected]
    [ 7.550379] EXT4-fs (dm-0): mounted filesystem without journal. Opts: (null)
    [ 9.109438] EXT4-fs (dm-1): mounted filesystem without journal. Opts: (null)
    [ 9.971361] EXT4-fs (dm-2): mounted filesystem without journal. Opts: (null)
    [ 13.089291] EXT4-fs (dm-0): re-mounted. Opts: (null)
    [ 14.352119] systemd-udevd[340]: starting version 186
    [ 17.929068] FS-Cache: Loaded
    [ 18.438650] RPC: Registered named UNIX socket transport module.
    [ 18.438652] RPC: Registered udp transport module.
    [ 18.438653] RPC: Registered tcp transport module.
    [ 18.438654] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 18.782016] ACPI: processor limited to max C-state 1
    [ 19.635195] sp5100_tco: SP5100 TCO WatchDog Timer Driver v0.01
    [ 19.635240] sp5100_tco: mmio address 0xbafe00 already in use
    [ 20.204771] input: PC Speaker as /devices/platform/pcspkr/input/input7
    [ 20.640467] EDAC MC: Ver: 2.1.0
    [ 20.777274] powernow-k8: Found 1 AMD Phenom(tm) II X6 1100T Processor (6 cpu cores) (version 2.20.00)
    [ 20.777285] powernow-k8: Core Performance Boosting: on.
    [ 20.777323] powernow-k8: 0 : pstate 0 (3300 MHz)
    [ 20.777324] powernow-k8: 1 : pstate 1 (2500 MHz)
    [ 20.777325] powernow-k8: 2 : pstate 2 (1700 MHz)
    [ 20.777326] powernow-k8: 3 : pstate 3 (800 MHz)
    [ 20.862178] MCE: In-kernel MCE decoding enabled.
    [ 20.879881] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 20.880685] AMD64 EDAC driver v3.4.0
    [ 20.880940] EDAC amd64: DRAM ECC disabled.
    [ 20.880985] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    [ 20.880989] Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    [ 20.880993] (Note that use of the override may cause unknown side effects.)
    [ 21.149386] microcode: CPU0: patch_level=0x010000bf
    [ 21.151641] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 21.151695] microcode: CPU1: patch_level=0x010000bf
    [ 21.152602] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 21.152661] microcode: CPU2: patch_level=0x010000bf
    [ 21.153521] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 21.153564] microcode: CPU3: patch_level=0x010000bf
    [ 21.154417] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 21.154464] microcode: CPU4: patch_level=0x010000bf
    [ 21.155273] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 21.155320] microcode: CPU5: patch_level=0x010000bf
    [ 21.156146] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 21.156367] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 21.398431] NFS: Registering the id_resolver key type
    [ 21.398447] FS-Cache: Netfs 'nfs' registered for caching
    [ 21.398865] systemd-modules-load[343]: Inserted module 'nfs'
    [ 21.848081] usbcore: registered new interface driver snd-usb-audio
    [ 22.019691] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
    [ 22.019773] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    [ 22.019885] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    [ 22.019956] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
    [ 22.020013] input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card0/input12
    [ 22.020063] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input13
    [ 22.020191] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input14
    [ 22.020309] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input15
    [ 22.020776] hda_intel: Disabling MSI
    [ 22.951109] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card2/input16
    [ 22.951340] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card2/input17
    [ 22.951541] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card2/input18
    [ 22.951732] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card2/input19
    [ 23.381688] systemd-vconsole-setup[441]: /usr/bin/loadkeys failed with error code 1.
    [ 23.381709] systemd-vconsole-setup[441]: /usr/bin/setfont failed with error code 1.
    [ 23.727260] EXT4-fs (dm-0): re-mounted. Opts: (null)
    [ 52.336128] raid0: Unknown parameter `raid1'
    [ 55.491171] md: raid0 personality registered for level 0
    [ 56.378538] md: raid1 personality registered for level 1
    [ 72.262557] md: raid10 personality registered for level 10
    [ 398.203893] ISOFS: Unable to identify CD-ROM format.
    [ 398.209523] SQUASHFS error: Can't find a SQUASHFS superblock on sdb
    [ 399.396899] EXT4-fs (sdb): VFS: Can't find ext4 filesystem
    [ 399.418501] EXT4-fs (sdb): VFS: Can't find ext4 filesystem
    [ 399.440053] EXT4-fs (sdb): VFS: Can't find ext4 filesystem
    [ 404.613431] fuse init (API version 7.18)
    [ 521.944483] mdadm: sending ioctl 800c0910 to a partition!
    [ 521.944491] mdadm: sending ioctl 800c0910 to a partition!
    [ 521.944499] mdadm: sending ioctl 1261 to a partition!
    [ 521.944504] mdadm: sending ioctl 1261 to a partition!
    [ 521.944657] mdadm: sending ioctl 1261 to a partition!
    [ 521.944662] mdadm: sending ioctl 1261 to a partition!
    [ 521.944802] mdadm: sending ioctl 1261 to a partition!
    [ 521.944806] mdadm: sending ioctl 1261 to a partition!
    [ 521.944941] mdadm: sending ioctl 1261 to a partition!
    [ 521.944945] mdadm: sending ioctl 1261 to a partition!
    Last edited by Kent (2012-09-21 10:17:41)

    00:00.0 Host bridge: Advanced Micro Devices [AMD] nee ATI RD890 PCI to PCI bridge (external gfx0 port B) (rev 02)
    00:02.0 PCI bridge: Advanced Micro Devices [AMD] nee ATI RD890 PCI to PCI bridge (PCI express gpp port B)
    00:05.0 PCI bridge: Advanced Micro Devices [AMD] nee ATI RD890 PCI to PCI bridge (PCI express gpp port E)
    00:0a.0 PCI bridge: Advanced Micro Devices [AMD] nee ATI RD890 PCI to PCI bridge (external gfx1 port A)
    00:11.0 RAID bus controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 SATA Controller [RAID5 mode] (rev 40)
    00:12.0 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:12.2 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:13.0 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:13.2 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:14.0 SMBus: Advanced Micro Devices [AMD] nee ATI SBx00 SMBus Controller (rev 42)
    00:14.1 IDE interface: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 IDE Controller (rev 40)
    00:14.2 Audio device: Advanced Micro Devices [AMD] nee ATI SBx00 Azalia (Intel HDA) (rev 40)
    00:14.3 ISA bridge: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 LPC host controller (rev 40)
    00:14.4 PCI bridge: Advanced Micro Devices [AMD] nee ATI SBx00 PCI to PCI Bridge (rev 40)
    00:14.5 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI2 Controller
    00:16.0 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:16.2 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:18.0 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor HyperTransport Configuration
    00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Address Map
    00:18.2 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor DRAM Controller
    00:18.3 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Miscellaneous Control
    00:18.4 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Link Control
    01:00.0 VGA compatible controller: NVIDIA Corporation GF110 [GeForce GTX 580] (rev a1)
    01:00.1 Audio device: NVIDIA Corporation GF110 High Definition Audio Controller (rev a1)
    02:00.0 USB controller: Etron Technology, Inc. EJ168 USB 3.0 Host Controller (rev 01)
    03:00.0 Ethernet controller: Broadcom Corporation NetLink BCM57781 Gigabit Ethernet PCIe (rev 10)
    If that's the output of lspci , i don't see any hardware raid controller .
    You are probably using the raid option of a motherboard's sata controller .
    Those controllers typically rely on the cpu for operation, lack a raid bios and need a software driver to access the array.
    lilsirecho' post above should help you to get started.

  • ["SOLVED"] PulseAudio - some applications won't output sound sometimes

    So, I have KDE 4 and PulseAudio installed, with VLC as Phonon's backend software.
    After startup, I often find that Skype won't output sound at all for seemingly random periods of time. This also often happens (sometimes simultaneously, but not necessarily) to Chromium. Pavucontrol and the KDE audio mixer, don't show anything useful at all in terms of the output of Skype and Chromium, and messing with master output in Pavucontrol doesn't affect anything.
    After a completely random period of time (usually a very long period of time), these applications start outputting sound again. It's very frustrating, and restarting the applications doesn't help whatsoever. While these two applications are affected, all other applications output sound perfectly.
    I don't even know. I've searched, but I haven't found any similar problems documented elsewhere. Any advice?
    EDIT: Solved, for now.
    Last edited by Archimaredes (2013-03-14 20:22:04)

    I fixed it (for now, at least!)
    I ran the below command:
    $ cat /proc/asound/cards
    0 [U0x46d0x804 ]: USB-Audio - USB Device 0x46d:0x804
    USB Device 0x46d:0x804 at usb-0000:00:1a.0-1.2, high speed
    1 [MID ]: HDA-Intel - HDA Intel MID
    HDA Intel MID at 0xf9ff8000 irq 47
    2 [NVidia ]: HDA-Intel - HDA NVidia
    HDA NVidia at 0xfbd7c000 irq 17
    Basically, my USB webcam, which also acts as a microphone, was being treated as my default sound card. I changed this by creating a file in /etc/modprobe.d with the following:
    options snd-hda-intel index=0
    Which set my real sound card as default:
    $ cat /proc/asound/cards
    0 [MID ]: HDA-Intel - HDA Intel MID
    HDA Intel MID at 0xf9ff8000 irq 47
    1 [NVidia ]: HDA-Intel - HDA NVidia
    HDA NVidia at 0xfbd7c000 irq 17
    2 [U0x46d0x804 ]: USB-Audio - USB Device 0x46d:0x804
    USB Device 0x46d:0x804 at usb-0000:00:1a.0-1.2, high speed
    The problem isn't ENTIRELY fixed. Skype's still being a bit buggy, but at least Chromium is now playing sound, including in Flash media. Strangely enough, after playing a Flash video (e.g. on YouTube), Skype's sound seems to fix itself if it's defunct.
    Last edited by Archimaredes (2013-03-14 20:23:49)

  • [Solved] Pulseaudio problem after update

    So, here is the deal. I have been watching movies, playing HoN and listening to music on Sunday, Everything worked fine.
    On monday, I updated the system remotely - from work: packer -Syu
    Here is the pacman log:
    [2012-07-09 11:36] Running 'pacman -S syslinux'
    [2012-07-09 11:36] Syslinux update successful
    [2012-07-09 11:36] upgraded syslinux (4.05-4 -> 4.05-4)
    [2012-07-09 15:57] Running 'pacman -Syu'
    [2012-07-09 15:57] synchronizing package lists
    [2012-07-09 15:57] starting full system upgrade
    [2012-07-09 16:21] upgraded alsa-plugins (1.0.25-1 -> 1.0.25-2)
    [2012-07-09 16:21] upgraded audacious-plugins (3.2.4-1 -> 3.2.4-2)
    [2012-07-09 16:21] upgraded linux-api-headers (3.3.8-1 -> 3.4.4-1)
    [2012-07-09 16:21] warning: /etc/locale.gen installed as /etc/locale.gen.pacnew
    [2012-07-09 16:21] Generating locales...
    [2012-07-09 16:21] en_US.UTF-8... done
    [2012-07-09 16:21] en_US.ISO-8859-1... done
    [2012-07-09 16:21] Generation complete.
    [2012-07-09 16:21] upgraded glibc (2.15-12 -> 2.16.0-1)
    [2012-07-09 16:21] upgraded binutils (2.22-7 -> 2.22-8)
    [2012-07-09 16:21] upgraded dbus-core (1.6.0-5 -> 1.6.2-2)
    [2012-07-09 16:21] upgraded dbus (1.6.0-1 -> 1.6.2-1)
    [2012-07-09 16:21] upgraded device-mapper (2.02.96-2 -> 2.02.96-3)
    [2012-07-09 16:21] upgraded x264 (20120204-1 -> 20120705-1)
    [2012-07-09 16:21] upgraded ffmpeg (20120509-1 -> 1:0.11.1-1)
    [2012-07-09 16:21] upgraded ffmpegthumbnailer (2.0.7-4 -> 2.0.7-5)
    [2012-07-09 16:21] upgraded freerdp (1.0.1-4 -> 1.0.1-5)
    [2012-07-09 16:21] upgraded gcc-libs (4.7.1-3 -> 4.7.1-4)
    [2012-07-09 16:22] upgraded gcc (4.7.1-3 -> 4.7.1-4)
    [2012-07-09 16:22] upgraded gegl (0.2.0-1 -> 0.2.0-2)
    [2012-07-09 16:22] upgraded grep (2.12-1 -> 2.13-1)
    [2012-07-09 16:22] upgraded gstreamer0.10-ugly (0.10.19-1 -> 0.10.19-2)
    [2012-07-09 16:22] upgraded gstreamer0.10-ugly-plugins (0.10.19-1 -> 0.10.19-2)
    [2012-07-09 16:22] >>please run /usr/sbin/cups-genppdupdate
    [2012-07-09 16:22] >>and restart cups deamon
    [2012-07-09 16:22] upgraded gutenprint (5.2.8-1 -> 5.2.9-1)
    [2012-07-09 16:22] upgraded imagemagick (6.7.7.10-1 -> 6.7.8.1-1)
    [2012-07-09 16:22] upgraded imdbpy (4.8.2-2 -> 4.9-1)
    [2012-07-09 16:22] upgraded initscripts (2012.06.3-1 -> 2012.06.3-2)
    [2012-07-09 16:22] upgraded lib32-glibc (2.15-11 -> 2.16.0-1)
    [2012-07-09 16:22] upgraded lib32-dbus-core (1.6.0-1 -> 1.6.2-1)
    [2012-07-09 16:22] upgraded lib32-gcc-libs (4.7.1-3 -> 4.7.1-4.1)
    [2012-07-09 16:22] upgraded lib32-libidn (1.24-1 -> 1.25-1)
    [2012-07-09 16:22] upgraded lib32-libjpeg-turbo (1.2.0-1 -> 1.2.1-1)
    [2012-07-09 16:22] upgraded libmysqlclient (5.5.25-1 -> 5.5.25.a-1)
    [2012-07-09 16:22] upgraded libpurple (2.10.4-2 -> 2.10.6-1)
    [2012-07-09 16:22] upgraded lvm2 (2.02.96-2 -> 2.02.96-3)
    [2012-07-09 16:22] upgraded mingw32-pthreads (2.8.0-3 -> 2.9.1-1)
    [2012-07-09 16:22] upgraded mpd (0.17-1 -> 0.17-2)
    [2012-07-09 16:22] upgraded mpfr (3.1.0.p10-1 -> 3.1.1-1)
    [2012-07-09 16:22] upgraded mplayer (34799-1 -> 35014-1)
    [2012-07-09 16:22] upgraded mysql-clients (5.5.25-1 -> 5.5.25.a-1)
    [2012-07-09 16:22] upgraded pidgin (2.10.4-2 -> 2.10.6-1)
    [2012-07-09 16:22] installed tinycdb (0.78-1)
    [2012-07-09 16:22] warning: /etc/postfix/main.cf installed as /etc/postfix/main.cf.pacnew
    [2012-07-09 16:22] upgraded postfix (2.9.3-1 -> 2.9.3-2)
    [2012-07-09 16:22] upgraded timidity++ (2.13.2-11 -> 2.14.0-1)
    [2012-07-09 16:22] upgraded transmission-cli (2.52-1 -> 2.60-1)
    [2012-07-09 16:22] upgraded transmission-gtk (2.52-1 -> 2.60-1)
    [2012-07-09 16:22] upgraded upower (0.9.16-1 -> 0.9.17-1)
    [2012-07-09 16:22] upgraded vlc (2.0.2-1 -> 2.0.2-2)
    [2012-07-09 22:34] Running 'pacman -S links'
    [2012-07-09 22:35] installed links (2.7-1)
    [2012-07-09 23:38] Running 'pacman -Syu'
    [2012-07-09 23:38] synchronizing package lists
    [2012-07-09 23:38] starting full system upgrade
    [2012-07-09 23:39] upgraded clementine (1.0.1-4 -> 1.0.1-6)
    [2012-07-09 23:39] upgraded dialog (1.1_20120215-1 -> 1.1_20120706-1)
    [2012-07-09 23:39] upgraded mpg123 (1.14.2-1 -> 1.14.3-1)
    [2012-07-09 23:39] upgraded xorg-server-common (1.12.2-1 -> 1.12.3-1)
    [2012-07-09 23:39] upgraded xorg-server (1.12.2-1 -> 1.12.3-1)
    [2012-07-09 23:40] Running 'pacman -U alacarte-3.5.3-1-any.pkg.tar.xz'
    [2012-07-09 23:40] upgraded alacarte (0.13.4-2 -> 3.5.3-1)
    [2012-07-09 23:50] Running 'pacman -S pulseaudio-alsa'
    [2012-07-09 23:58] Running 'pacman -U asoundconf-1:1.0.1-3-any.pkg.tar.xz'
    [2012-07-09 23:59] installed asoundconf (1:1.0.1-3)
    [2012-07-10 00:08] Running 'pacman -Rn pulseaudio pavucontrol pulseaudio_ctl pamixer-git pasystray-git'
    [2012-07-10 00:08] Running 'pacman -Rn pulseaudio pavucontrol pamixer-git pasystray-git'
    [2012-07-10 00:08] Running 'pacman -Rn pulseaudio pavucontrol'
    [2012-07-10 00:09] Running 'pacman -Rn pulseaudio pavucontrol pulseaudio-alsa'
    [2012-07-10 00:28] Running 'pacman -Rsu speech-dispatcher'
    [2012-07-10 00:29] Running 'pacman -Rsu espeak'
    [2012-07-10 00:29] Running 'pacman -Rsu festival'
    [2012-07-10 14:30] Running 'pacman -Syu'
    [2012-07-10 14:30] synchronizing package lists
    [2012-07-10 14:30] starting full system upgrade
    [2012-07-10 14:31] upgraded unetbootin (575-1 -> 577-1)
    [2012-07-10 14:31] Running 'pacman -U gmameui-0.2.12-3-x86_64.pkg.tar.xz'
    [2012-07-10 14:31] upgraded gmameui (0.2.12-2 -> 0.2.12-3)
    As you can see, earlier that day (before work) I (re)installed syslinux. System boots fine. I don't think this is an issue (but hey, whattoIknow )
    So, I started the upgrade at 15:57. It finished, and I rebooted after. Like I always do.
    Fast forward, come home. No sound!
    Check speakers: plugged in/turned on
    Check pavucontrol - only dummy device available. Even if I choose "show all devices".
    Check alsamixer - default device "pulseaudio". F6, change to Intel - shows mixers OK.
    Set some program to use ALSA. Play music - works.
    Hm....
    Could anyone help me out here? Where do I start troubleshooting next, and how do I resolve this?
    This issue might or might not be related to this topic:
    Edit:
    Either MPD or timidity++ was causing my soundcard to appear "busy" for pulse. After removing both daemons from rc.conf, pulse started working normally once again. I will update this thread if I find a solution to keep both timidity and mpd with working pulse. Keep an eye on new posts.
    A big thanks to lucke for helping me out!
    Last edited by Kaurin (2012-07-10 16:35:58)

    this is the output:
    [milos@Kaurinov ~]$ sudo pulseaudio -k
    E: [pulseaudio] main.c: Failed to kill daemon: No such process
    [milos@Kaurinov ~]$ sudo pulseaudio -vvvv
    W: [pulseaudio] main.c: This program is not intended to be run as root (unless --system is specified).
    D: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us.
    D: [pulseaudio] core-util.c: setpriority() worked.
    I: [pulseaudio] core-util.c: Successfully gained nice level -11.
    I: [pulseaudio] main.c: This is PulseAudio 2.0
    D: [pulseaudio] main.c: Compilation host: x86_64-unknown-linux-gnu
    D: [pulseaudio] main.c: Compilation CFLAGS: -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wall -W -Wextra -Wno-long-long -Wvla -Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 -Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs -Wformat-nonliteral -Wpointer-arith -Winit-self -Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align -Wstrict-aliasing -Wwrite-strings -Wno-unused-parameter -ffast-math -Wp,-D_FORTIFY_SOURCE=2 -fno-common -fdiagnostics-show-option
    D: [pulseaudio] main.c: Running on host: Linux x86_64 3.4.4-2-ARCH #1 SMP PREEMPT Sun Jun 24 18:59:47 CEST 2012
    D: [pulseaudio] main.c: Found 4 CPUs.
    I: [pulseaudio] main.c: Page size is 4096 bytes
    D: [pulseaudio] main.c: Compiled with Valgrind support: no
    D: [pulseaudio] main.c: Running in valgrind mode: no
    D: [pulseaudio] main.c: Running in VM: no
    D: [pulseaudio] main.c: Optimized build: yes
    D: [pulseaudio] main.c: FASTPATH defined, only fast path asserts disabled.
    I: [pulseaudio] main.c: Machine ID is a18a39a519d3813ab73cc383000003e3.
    I: [pulseaudio] main.c: Using runtime directory /root/.pulse/a18a39a519d3813ab73cc383000003e3-runtime.
    I: [pulseaudio] main.c: Using state directory /root/.pulse.
    I: [pulseaudio] main.c: Using modules directory /usr/lib/pulse-2.0/modules.
    I: [pulseaudio] main.c: Running in system mode: no
    I: [pulseaudio] main.c: Fresh high-resolution timers available! Bon appetit!
    D: [pulseaudio] memblock.c: Using shared memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
    I: [pulseaudio] cpu-x86.c: CPU flags: CMOV MMX SSE SSE2 SSE3 SSSE3
    I: [pulseaudio] svolume_mmx.c: Initialising MMX optimized volume functions.
    I: [pulseaudio] remap_mmx.c: Initialising MMX optimized remappers.
    I: [pulseaudio] svolume_sse.c: Initialising SSE2 optimized volume functions.
    I: [pulseaudio] remap_sse.c: Initialising SSE2 optimized remappers.
    I: [pulseaudio] sconv_sse.c: Initialising SSE2 optimized conversions.
    I: [pulseaudio] svolume_orc.c: Initialising ORC optimized volume functions.
    D: [pulseaudio] database-tdb.c: Opened TDB database '/root/.pulse/a18a39a519d3813ab73cc383000003e3-device-volumes.tdb'
    I: [pulseaudio] module-device-restore.c: Successfully opened database file '/root/.pulse/a18a39a519d3813ab73cc383000003e3-device-volumes'.
    I: [pulseaudio] module.c: Loaded "module-device-restore" (index: #0; argument: "").
    D: [pulseaudio] database-tdb.c: Opened TDB database '/root/.pulse/a18a39a519d3813ab73cc383000003e3-stream-volumes.tdb'
    I: [pulseaudio] module-stream-restore.c: Successfully opened database file '/root/.pulse/a18a39a519d3813ab73cc383000003e3-stream-volumes'.
    D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1 added for object /org/pulseaudio/stream_restore1
    I: [pulseaudio] module.c: Loaded "module-stream-restore" (index: #1; argument: "").
    D: [pulseaudio] database-tdb.c: Opened TDB database '/root/.pulse/a18a39a519d3813ab73cc383000003e3-card-database.tdb'
    I: [pulseaudio] module-card-restore.c: Successfully opened database file '/root/.pulse/a18a39a519d3813ab73cc383000003e3-card-database'.
    I: [pulseaudio] module.c: Loaded "module-card-restore" (index: #2; argument: "").
    I: [pulseaudio] module.c: Loaded "module-augment-properties" (index: #3; argument: "").
    D: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.0/modules/module-udev-detect.so': success
    D: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
    D: [pulseaudio] module-udev-detect.c: /devices/pci0000:00/0000:00:1b.0/sound/card0 is busy: yes
    D: [pulseaudio] module-udev-detect.c: /dev/snd/controlC1 is accessible: yes
    D: [pulseaudio] module-udev-detect.c: /devices/pci0000:00/0000:00:1d.7/usb8/8-3/8-3.3/8-3.3:1.2/sound/card1 is busy: no
    D: [pulseaudio] module-udev-detect.c: Loading module-alsa-card with arguments 'device_id="1" name="usb-PixArt_Imaging_Inc._USB2.0_Camera-02-USB20Camera" card_name="alsa_card.usb-PixArt_Imaging_Inc._USB2.0_Camera-02-USB20Camera" namereg_fail=false tsched=yes fixed_latency_range=no ignore_dB=no deferred_volume=yes card_properties="module-udev-detect.discovered=1"'
    D: [pulseaudio] reserve-wrap.c: Unable to contact D-Bus session bus: org.freedesktop.DBus.Error.Spawn.ExecFailed: /usr/bin/dbus-launch terminated abnormally with the following error: PuTTY X11 proxy: wrong authorisation protocol attemptedAutolaunch error: X11 initialization failed.
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Mono (analog-mono)
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device hw:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-mono+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Mono (analog-mono)
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device hw:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-mono+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Mono (analog-mono)
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device hw:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-mono+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Mono (analog-mono)
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device hw:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-mono+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Mono (analog-mono)
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device hw:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Stereo (analog-stereo)
    D: [pulseaudio] alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device front:1: No such file or directory
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device hw:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-stereo+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Stereo (analog-stereo)
    D: [pulseaudio] alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device front:1: No such file or directory
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device hw:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-stereo+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Stereo (analog-stereo)
    D: [pulseaudio] alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device front:1: No such file or directory
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device hw:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-stereo+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Stereo (analog-stereo)
    D: [pulseaudio] alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device front:1: No such file or directory
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device hw:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-stereo+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Stereo (analog-stereo)
    D: [pulseaudio] alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device front:1: No such file or directory
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device hw:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-40
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.0 (analog-surround-40)
    D: [pulseaudio] alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)conf.c: Unknown parameters 1
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM surround40:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround40:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-40+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.0 (analog-surround-40)
    D: [pulseaudio] alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)conf.c: Unknown parameters 1
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM surround40:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround40:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-40+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.0 (analog-surround-40)
    D: [pulseaudio] alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)conf.c: Unknown parameters 1
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM surround40:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround40:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-40+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.0 (analog-surround-40)
    D: [pulseaudio] alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)conf.c: Unknown parameters 1
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM surround40:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround40:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-40+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.0 (analog-surround-40)
    D: [pulseaudio] alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)conf.c: Unknown parameters 1
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM surround40:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround40:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-41
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.1 (analog-surround-41)
    D: [pulseaudio] alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround41:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-41+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.1 (analog-surround-41)
    D: [pulseaudio] alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround41:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-41+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.1 (analog-surround-41)
    D: [pulseaudio] alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround41:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-41+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.1 (analog-surround-41)
    D: [pulseaudio] alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround41:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-41+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.1 (analog-surround-41)
    D: [pulseaudio] alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround41:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-50
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.0 (analog-surround-50)
    D: [pulseaudio] alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround50:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-50+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.0 (analog-surround-50)
    D: [pulseaudio] alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround50:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-50+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.0 (analog-surround-50)
    D: [pulseaudio] alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround50:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-50+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.0 (analog-surround-50)
    D: [pulseaudio] alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround50:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-50+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.0 (analog-surround-50)
    D: [pulseaudio] alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround50:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-51
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.1 (analog-surround-51)
    D: [pulseaudio] alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)conf.c: Unknown parameters 1
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM surround51:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround51:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-51+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.1 (analog-surround-51)
    D: [pulseaudio] alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)conf.c: Unknown parameters 1
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM surround51:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround51:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-51+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.1 (analog-surround-51)
    D: [pulseaudio] alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)conf.c: Unknown parameters 1
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM surround51:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround51:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-51+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.1 (analog-surround-51)
    D: [pulseaudio] alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)conf.c: Unknown parameters 1
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM surround51:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround51:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-51+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.1 (analog-surround-51)
    D: [pulseaudio] alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)conf.c: Unknown parameters 1
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM surround51:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround51:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-71
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 7.1 (analog-surround-71)
    D: [pulseaudio] alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround71:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-71+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 7.1 (analog-surround-71)
    D: [pulseaudio] alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround71:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-71+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 7.1 (analog-surround-71)
    D: [pulseaudio] alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround71:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-71+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 7.1 (analog-surround-71)
    D: [pulseaudio] alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround71:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-71+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 7.1 (analog-surround-71)
    D: [pulseaudio] alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device surround71:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (IEC958) (iec958-stereo)
    D: [pulseaudio] alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device iec958:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-stereo+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (IEC958) (iec958-stereo)
    D: [pulseaudio] alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device iec958:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-stereo+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (IEC958) (iec958-stereo)
    D: [pulseaudio] alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device iec958:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-stereo+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (IEC958) (iec958-stereo)
    D: [pulseaudio] alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device iec958:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-stereo+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (IEC958) (iec958-stereo)
    D: [pulseaudio] alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC1D0p' failed (-2)
    I: [pulseaudio] alsa-util.c: Error opening PCM device iec958:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-40
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 4.0 (IEC958/AC3) (iec958-ac3-surround-40)
    D: [pulseaudio] alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device a52:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-40+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 4.0 (IEC958/AC3) (iec958-ac3-surround-40)
    D: [pulseaudio] alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device a52:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-40+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 4.0 (IEC958/AC3) (iec958-ac3-surround-40)
    D: [pulseaudio] alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device a52:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-40+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 4.0 (IEC958/AC3) (iec958-ac3-surround-40)
    D: [pulseaudio] alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device a52:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-40+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 4.0 (IEC958/AC3) (iec958-ac3-surround-40)
    D: [pulseaudio] alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device a52:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-51
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/AC3) (iec958-ac3-surround-51)
    D: [pulseaudio] alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device a52:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-51+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/AC3) (iec958-ac3-surround-51)
    D: [pulseaudio] alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device a52:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-51+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/AC3) (iec958-ac3-surround-51)
    D: [pulseaudio] alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device a52:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-51+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/AC3) (iec958-ac3-surround-51)
    D: [pulseaudio] alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device a52:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-51+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/AC3) (iec958-ac3-surround-51)
    D: [pulseaudio] alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device a52:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-dts-surround-51
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/DTS) (iec958-dts-surround-51)
    D: [pulseaudio] alsa-util.c: Trying dca:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM dca:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device dca:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-dts-surround-51+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/DTS) (iec958-dts-surround-51)
    D: [pulseaudio] alsa-util.c: Trying dca:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM dca:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device dca:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-dts-surround-51+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/DTS) (iec958-dts-surround-51)
    D: [pulseaudio] alsa-util.c: Trying dca:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM dca:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device dca:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-dts-surround-51+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/DTS) (iec958-dts-surround-51)
    D: [pulseaudio] alsa-util.c: Trying dca:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM dca:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device dca:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-dts-surround-51+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/DTS) (iec958-dts-surround-51)
    D: [pulseaudio] alsa-util.c: Trying dca:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM dca:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device dca:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (HDMI) (hdmi-stereo)
    D: [pulseaudio] alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)confmisc.c: Unable to find definition 'cards.USB-Audio.pcm.hdmi.0:CARD=1,AES0=4,AES1=130,AES2=0,AES3=2'
    I: [pulseaudio] (alsa-lib)conf.c: function snd_func_refer returned error: No such file or directory
    I: [pulseaudio] (alsa-lib)conf.c: Evaluate error: No such file or directory
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM hdmi:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device hdmi:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-stereo+input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (HDMI) (hdmi-stereo)
    D: [pulseaudio] alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)confmisc.c: Unable to find definition 'cards.USB-Audio.pcm.hdmi.0:CARD=1,AES0=4,AES1=130,AES2=0,AES3=2'
    I: [pulseaudio] (alsa-lib)conf.c: function snd_func_refer returned error: No such file or directory
    I: [pulseaudio] (alsa-lib)conf.c: Evaluate error: No such file or directory
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM hdmi:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device hdmi:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-stereo+input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (HDMI) (hdmi-stereo)
    D: [pulseaudio] alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)confmisc.c: Unable to find definition 'cards.USB-Audio.pcm.hdmi.0:CARD=1,AES0=4,AES1=130,AES2=0,AES3=2'
    I: [pulseaudio] (alsa-lib)conf.c: function snd_func_refer returned error: No such file or directory
    I: [pulseaudio] (alsa-lib)conf.c: Evaluate error: No such file or directory
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM hdmi:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device hdmi:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-stereo+input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (HDMI) (hdmi-stereo)
    D: [pulseaudio] alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)confmisc.c: Unable to find definition 'cards.USB-Audio.pcm.hdmi.0:CARD=1,AES0=4,AES1=130,AES2=0,AES3=2'
    I: [pulseaudio] (alsa-lib)conf.c: function snd_func_refer returned error: No such file or directory
    I: [pulseaudio] (alsa-lib)conf.c: Evaluate error: No such file or directory
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM hdmi:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device hdmi:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-stereo+input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (HDMI) (hdmi-stereo)
    D: [pulseaudio] alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
    I: [pulseaudio] (alsa-lib)confmisc.c: Unable to find definition 'cards.USB-Audio.pcm.hdmi.0:CARD=1,AES0=4,AES1=130,AES2=0,AES3=2'
    I: [pulseaudio] (alsa-lib)conf.c: function snd_func_refer returned error: No such file or directory
    I: [pulseaudio] (alsa-lib)conf.c: Evaluate error: No such file or directory
    I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM hdmi:1
    I: [pulseaudio] alsa-util.c: Error opening PCM device hdmi:1: No such file or directory
    D: [pulseaudio] alsa-mixer.c: Looking at profile input:analog-mono
    D: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Mono (analog-mono)
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open hw:1
    D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 10922 ms
    D: [pulseaudio] alsa-util.c: Set buffer size first (to 4797 samples), period size second (to 1199 samples).
    I: [pulseaudio] alsa-util.c: Device hw:1 doesn't support 44100 Hz, changed to 48000 Hz.
    D: [pulseaudio] alsa-mixer.c: Profile input:analog-mono supported.
    I: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:1'
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone-front'
    D: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Mic Jack' succeeded (not found)
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-microphone-front', none of required-any elements preset.
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone-rear'
    D: [pulseaudio] alsa-mixer.c: Probe of jack 'Rear Mic Jack' succeeded (not found)
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-microphone-rear', none of required-any elements preset.
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone-internal'
    D: [pulseaudio] alsa-mixer.c: Probe of jack 'Mic Jack' succeeded (not found)
    D: [pulseaudio] alsa-mixer.c: Probe of jack 'Dock Mic Jack' succeeded (not found)
    D: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Mic Jack' succeeded (not found)
    D: [pulseaudio] alsa-mixer.c: Probe of jack 'Rear Mic Jack' succeeded (not found)
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Int Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Int Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-microphone-internal', none of required-any elements preset.
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone-dock'
    D: [pulseaudio] alsa-mixer.c: Probe of jack 'Dock Mic Jack' succeeded (not found)
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-microphone-dock', none of required-any elements preset.
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input'
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' failed.
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone'
    D: [pulseaudio] alsa-mixer.c: Probe of jack 'Mic Jack' succeeded (not found)
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=1, switch=1, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Select' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost (+20dB)' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-linein'
    D: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Jack' succeeded (not found)
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-linein', none of required-any elements preset.
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input'
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' failed.
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-video'
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' failed.
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-video'
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' failed.
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-radio'
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' failed.
    D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input'
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
    D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' failed.
    D: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
    D: [pulseaudio] alsa-mixer.c: Path Set 0x13bd500, direction=2
    D: [pulseaudio] alsa-mixer.c: Path analog-input-microphone (Microphone), direction=2, priority=87, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=2, min_dB=30, max_dB=50
    D: [pulseaudio] alsa-mixer.c: Element Mic, direction=2, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=4, required_absent=0, mask=0x7ffffffffffff, n_channels=1, override_map=yes
    D: [pulseaudio] alsa-mixer.c: Jack Mic, alsa_name='Mic Jack', detection unavailable
    D: [pulseaudio] alsa-mixer.c: Looking at profile input:analog-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo (analog-stereo)
    D: [pulseaudio] alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open front:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying front:1 without SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open front:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying plug:front:1 with SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open plug:front:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying plug:front:1 without SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open plug:front:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    I: [pulseaudio] alsa-util.c: Failed to set hardware parameters on plug:front:1: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open hw:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying hw:1 without SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open hw:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying plug:hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open plug:hw:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying plug:hw:1 without SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open plug:hw:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    I: [pulseaudio] alsa-util.c: Failed to set hardware parameters on plug:hw:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile input:analog-4-channel-input
    D: [pulseaudio] alsa-mixer.c: Checking for recording on Analog 4-channel Input (analog-4-channel-input)
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open hw:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(4) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying hw:1 without SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open hw:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(4) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying plug:hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open plug:hw:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(4) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying plug:hw:1 without SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open plug:hw:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(4) failed: Invalid argument
    I: [pulseaudio] alsa-util.c: Failed to set hardware parameters on plug:hw:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Looking at profile input:iec958-stereo
    D: [pulseaudio] alsa-mixer.c: Checking for recording on Digital Stereo (IEC958) (iec958-stereo)
    D: [pulseaudio] alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open iec958:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open iec958:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying plug:iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open plug:iec958:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    D: [pulseaudio] alsa-util.c: Trying plug:iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open plug:iec958:1
    D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(2) failed: Invalid argument
    I: [pulseaudio] alsa-util.c: Failed to set hardware parameters on plug:iec958:1: Invalid argument
    D: [pulseaudio] alsa-mixer.c: Profile set 0x1376860, auto_profiles=yes, probed=yes, n_mappings=1, n_profiles=1, n_decibel_fixes=0
    D: [pulseaudio] alsa-mixer.c: Mapping analog-mono (Analog Mono), priority=1, channel_map=mono, supported=yes, direction=0
    D: [pulseaudio] alsa-mixer.c: Profile input:analog-mono (Analog Mono Input), priority=1, supported=yes n_input_mappings=1, n_output_mappings=0
    D: [pulseaudio] alsa-mixer.c: Input analog-mono
    D: [pulseaudio] module-card-restore.c: Database contains invalid data for key: alsa_card.usb-PixArt_Imaging_Inc._USB2.0_Camera-02-USB20Camera (probably pre-v1.0 data)
    D: [pulseaudio] module-card-restore.c: Attempting to load legacy (pre-v1.0) data for key: alsa_card.usb-PixArt_Imaging_Inc._USB2.0_Camera-02-USB20Camera
    D: [pulseaudio] module-card-restore.c: Size does not match.
    D: [pulseaudio] module-card-restore.c: Unable to load legacy (pre-v1.0) data for key: alsa_card.usb-PixArt_Imaging_Inc._USB2.0_Camera-02-USB20Camera. Ignoring.
    I: [pulseaudio] card.c: Created 0 "alsa_card.usb-PixArt_Imaging_Inc._USB2.0_Camera-02-USB20Camera"
    D: [pulseaudio] reserve-wrap.c: Unable to contact D-Bus session bus: org.freedesktop.DBus.Error.Spawn.ExecFailed: /usr/bin/dbus-launch terminated abnormally with the following error: PuTTY X11 proxy: wrong authorisation protocol attemptedAutolaunch error: X11 initialization failed.
    D: [pulseaudio] alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
    D: [pulseaudio] alsa-util.c: Managed to open hw:1
    I: [pulseaudio] alsa-util.c: cannot disable ALSA period wakeups
    D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 10922 ms
    D: [pulseaudio] alsa-util.c: Set buffer size first (to 96000 samples), period size second (to 96000 samples).
    I: [pulseaudio] alsa-util.c: Device hw:1 doesn't support 44100 Hz, changed to 48000 Hz.
    I: [pulseaudio] alsa-util.c: ALSA period wakeups were not disabled
    I: [pulseaudio] alsa-source.c: Successfully opened device hw:1.
    I: [pulseaudio] alsa-source.c: Selected mapping 'Analog Mono' (analog-mono).
    I: [pulseaudio] alsa-source.c: Successfully enabled mmap() mode.
    I: [pulseaudio] alsa-source.c: Successfully enabled timer-based scheduling mode.
    I: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:1'
    D: [pulseaudio] alsa-mixer.c: Added 1 ports
    D: [pulseaudio] module-device-restore.c: Database contains invalid data for key: source:alsa_input.usb-PixArt_Imaging_Inc._USB2.0_Camera-02-USB20Camera.analog-mono:null
    W: [pulseaudio] source.c: Default and alternate sample rates are the same.
    I: [pulseaudio] source.c: Created source 0 "alsa_input.usb-PixArt_Imaging_Inc._USB2.0_Camera-02-USB20Camera.analog-mono" with sample spec s16le 1ch 48000Hz and channel map mono
    I: [pulseaudio] source.c: alsa.resolution_bits = "16"
    I: [pulseaudio] source.c: device.api = "alsa"
    I: [pulseaudio] source.c: device.class = "sound"
    I: [pulseaudio] source.c: alsa.class = "generic"
    I: [pulseaudio] source.c: alsa.subclass = "generic-mix"
    I: [pulseaudio] source.c: alsa.name = "USB Audio"
    I: [pulseaudio] source.c: alsa.id = "USB Audio"
    I: [pulseaudio] source.c: alsa.subdevice = "0"
    I: [pulseaudio] source.c: alsa.subdevice_name = "subdevice #0"
    I: [pulseaudio] source.c: alsa.device = "0"
    I: [pulseaudio] source.c: alsa.card = "1"
    I: [pulseaudio] source.c: alsa.card_name = "USB2.0_Camera"
    I: [pulseaudio] source.c: alsa.long_card_name = "PixArt Imaging Inc. USB2.0_Camera at usb-0000:00:1d.7-3.3, high speed"
    I: [pulseaudio] source.c: alsa.driver_name = "snd_usb_audio"
    I: [pulseaudio] source.c: device.bus_path = "pci-0000:00:1d.7-usb-0:3.3:1.2"
    I: [pulseaudio] source.c: sysfs.path = "/devices/pci0000:00/0000:00:1d.7/usb8/8-3/8-3.3/8-3.3:1.2/sound/card1"
    I: [pulseaudio] source.c: udev.id = "usb-PixArt_Imaging_Inc._USB2.0_Camera-02-USB20Camera"
    I: [pulseaudio] source.c: device.bus = "usb"
    I: [pulseaudio] source.c: device.vendor.id = "093a"
    I: [pulseaudio] source.c: device.vendor.name = "Pixart Imaging, Inc."
    I: [pulseaudio] source.c: device.product.id = "2700"
    I: [pulseaudio] source.c: device.product.name = "USB2.0_Camera"
    I: [pulseaudio] source.c: device.serial = "PixArt_Imaging_Inc._USB2.0_Camera"
    I: [pulseaudio] source.c: device.form_factor = "webcam"
    I: [pulseaudio] source.c: device.string = "hw:1"
    I: [pulseaudio] source.c: device.buffering.buffer_size = "192000"
    I: [pulseaudio] source.c: device.buffering.fragment_size = "96000"
    I: [pulseaudio] source.c: device.access_mode = "mmap+timer"
    I: [pulseaudio] source.c: device.profile.name = "analog-mono"
    I: [pulseaudio] source.c: device.profile.description = "Analog Mono"
    I: [pulseaudio] source.c: device.description = "USB2.0_Camera Analog Mono"
    I: [pulseaudio] source.c: alsa.mixer_name = "USB Mixer"
    I: [pulseaudio] source.c: alsa.components = "USB093a:2700"
    I: [pulseaudio] source.c: module-udev-detect.discovered = "1"
    I: [pulseaudio] source.c: device.icon_name = "camera-web-usb"
    I: [pulseaudio] alsa-source.c: Using 2.0 fragments of size 96000 bytes (1000.00ms), buffer size is 192000 bytes (2000.00ms)
    I: [pulseaudio] alsa-source.c: Time scheduling watermark is 36.75ms
    D: [pulseaudio] alsa-source.c: hwbuf_unused=0
    D: [pulseaudio] alsa-source.c: setting avail_min=94237
    D: [pulseaudio] alsa-mixer.c: Activating path analog-input-microphone
    D: [pulseaudio] alsa-mixer.c: Path analog-input-microphone (Microphone), direction=2, priority=87, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=2, min_dB=30, max_dB=50
    D: [pulseaudio] alsa-mixer.c: Element Mic, direction=2, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=4, required_absent=0, mask=0x7ffffffffffff, n_channels=1, override_map=yes
    D: [pulseaudio] alsa-mixer.c: Jack Mic, alsa_name='Mic Jack', detection unavailable
    I: [pulseaudio] alsa-source.c: Successfully enabled deferred volume.
    I: [pulseaudio] alsa-source.c: Hardware volume ranges from 30.00 dB to 50.00 dB.
    I: [pulseaudio] alsa-source.c: Fixing base volume to -50.00 dB
    I: [pulseaudio] alsa-source.c: Using hardware volume control. Hardware dB scale supported.
    I: [pulseaudio] alsa-source.c: Using hardware mute control.
    D: [pulseaudio] alsa-util.c: snd_pcm_dump():
    D: [pulseaudio] alsa-util.c: Hardware PCM card 1 'USB2.0_Camera' device 0 subdevice 0
    D: [pulseaudio] alsa-util.c: Its setup is:
    D: [pulseaudio] alsa-util.c: stream : CAPTURE
    D: [pulseaudio] alsa-util.c: access : MMAP_INTERLEAVED
    D: [pulseaudio] alsa-util.c: format : S16_LE
    D: [pulseaudio] alsa-util.c: subformat : STD
    D: [pulseaudio] alsa-util.c: channels : 1
    D: [pulseaudio] als

  • [SOLVED] Rapidly changing pixels in X (Intel 945GME)

    Hi,
    A few days ago I managed to install Arch Linux on my EEE Box B202 (thanks, devs), containing an Intel 945GME chipset. Everything looks fine, but when I start X, the screen goes black for a few moments (monitor complains 'no sync') and when it is back on, I sometimes notice some screen glitches: a few times a minute there is a little flicker somewhere (especially when something on the screen changes) and pictures are not 'steady', i.e. there are pixels that rapidly change colour (e.g., in the Google logo). On smooth surfaces I don't notice those glitches (or they are less noticeable).
    My monitor is connected using a DVI-cable (so, without the DVI-to-VGA-adaptor). In WinXP there are no glitches, so it couldn't be due to the cable or the 945GME chipset that can't handle this resolution... I tried using xf86-video-intel 2.4.3-1 and libdrm 2.3.1-2 as well as xf86-video-intel-newest 2.6.1-2 and libdrm-newest 2.4.4-2 from AUR. On another box (with a i82915G/GV/910GL graphics chip) there are no problems with these drivers (well, connecting using the VGA-port, that is).
    I already searched the forums for this (also the Ubuntu- and EEE-users forum), but nothing helps. My xorg.conf reads
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "ServerFlags"
    Option "AutoAddDevices" "False"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "xtrap"
    Load "extmod"
    Load "glx"
    Load "dri"
    Load "dbe"
    Load "freetype"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "IMPS/2" # IntelliMouse PS/2
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "LVDS"
    Option "Ignore" "True"
    EndSection
    Section "Monitor"
    Identifier "VGA"
    Option "Ignore" "True"
    EndSection
    Section "Monitor"
    Identifier "TMDS-1"
    Option "Ignore" "False"
    EndSection
    Section "Monitor"
    Identifier "Neovo F-419"
    HorizSync 31.5 - 64.3
    VertRefresh 50-70
    DisplaySize 336 269
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "ColorKey" # <i>
    #Option "CacheLines" # <i>
    #Option "Dac6Bit" # [<bool>]
    Option "DRI" # [<bool>]
    #Option "NoDDC" # [<bool>]
    #Option "ShowCache" # [<bool>]
    #Option "XvMCSurfaces" # <i>
    #Option "PageFlip" # [<bool>]
    Option "monitor-LVDS" "LVDS"
    Option "monitor-VGA" "VGA"
    Option "monitor-TMDS-1" "TMDS-1"
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 945GME Express Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Neovo F-419"
    DefaultDepth 24
    Subsection "Display"
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    EndSection
    When adding @60 to the Mode "1280x1024", my monitor complains about the signal being out of range (despite displaying a somewhat unsharp picture). Uncommenting the "NoAccel" option and commenting out "DRI" didn't solve this problem (only slows down graphics drawing a lot).
    This is my last Xorg.0.log (using 2.4.3-1):
    X.Org X Server 1.5.3
    Release Date: 5 November 2008
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.27-ARCH i686
    Current Operating System: Linux brogain 2.6.28-ARCH #1 SMP PREEMPT Sun Jan 25 10:13:11 UTC 2009 i686
    Build Date: 17 December 2008 08:20:05PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Feb 1 13:07:19 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Neovo F-419"
    (**) | |-->Device "Card0"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (**) Option "AutoAddDevices" "False"
    (**) Not automatically adding devices
    (==) Automatically enabling devices
    (==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81d5fe0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 4.1
    X.Org XInput driver : 2.1
    X.Org Server Extension : 1.1
    X.Org Font Renderer : 0.6
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0@0:2:0) Intel Corporation Mobile 945GME Express Integrated Graphics Controller rev 3, Mem @ 0xfeb80000/0, 0xd0000000/0, 0xfeb40000/0, I/O @ 0x0000ec80/0
    (--) PCI: (0@0:2:1) Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0xfea80000/0
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) LoadModule: "xtrap"
    (II) Loading /usr/lib/xorg/modules/extensions//libxtrap.so
    (II) Module xtrap: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension DEC-XTRAP
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Server Extension, version 1.1
    (==) AIGLX enabled
    (==) Exporting typical set of GLX visuals
    (II) Loading extension GLX
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 1.5.3, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.6
    (II) Loading font FreeType
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 2.4.3
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 4.1
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.3.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.3.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
    965GM, 965GME/GLE, G33, Q35, Q33,
    Mobile Intel® GM45 Express Chipset,
    Intel Integrated Graphics Device, G45/G43, Q45/Q43
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Video Driver, version 4.1
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules//libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.1.0
    ABI class: X.Org Video Driver, version 4.1
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 0.1.0
    ABI class: X.Org Video Driver, version 4.1
    (**) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (**) intel(0): Option "DRI"
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GME
    (--) intel(0): Chipset: "945GME"
    (--) intel(0): Linear framebuffer at 0xD0000000
    (--) intel(0): IO registers at addr 0xFEB80000
    (II) intel(0): 2 display pipes available.
    (==) intel(0): Using EXA for acceleration
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules//libint10.so
    (II) intel(0): initializing int10
    (WW) intel(0): Bad V_BIOS checksum
    (II) intel(0): Primary V_BIOS segment is: 0xc000
    (II) intel(0): VESA BIOS detected
    (II) intel(0): VESA VBE Version 3.0
    (II) intel(0): VESA VBE Total Mem: 7872 kB
    (II) intel(0): VESA VBE OEM: Intel(r) 82945GM Chipset Family Graphics Chip Accelerated VGA BIOS
    (II) intel(0): VESA VBE OEM Software Rev: 1.0
    (II) intel(0): VESA VBE OEM Vendor: Intel Corporation
    (II) intel(0): VESA VBE OEM Product: Intel(r) 82945GM Chipset Family Graphics Controller
    (II) intel(0): VESA VBE OEM Product Rev: Hardware Version 0.0
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) intel(0): Output VGA using monitor section VGA
    (**) intel(0): Option "Ignore" "True"
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70.
    (II) intel(0): I2C bus "SDVOB DDC Bus" initialized.
    (II) intel(0): Output TMDS-1 using monitor section TMDS-1
    (**) intel(0): Option "Ignore" "False"
    (II) intel(0): SDVOB: device VID/DID: 02:47.02, clock range 25.0MHz - 165.0MHz
    (II) intel(0): SDVOB: 1 input channel
    (II) intel(0): SDVOB: TMDS0 output reported
    (II) intel(0): Current clock rate multiplier: 2
    (II) intel(0): I2C device "SDVOB DDC Bus:ddc2" registered at address 0xA0.
    (II) intel(0): EDID vendor "AIC", prod id 37968
    (II) intel(0): Using hsync ranges from config file
    (II) intel(0): Using vrefresh ranges from config file
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    (II) intel(0): Modeline "640x350"x0.0 25.18 640 656 752 800 350 387 389 449 +hsync -vsync (31.5 kHz)
    (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz)
    (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    (II) intel(0): Modeline "640x480"x0.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    (II) intel(0): Modeline "1024x768"x0.0 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz)
    (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    (II) intel(0): Modeline "1280x1024"x60.0 108.88 1280 1360 1496 1712 1024 1025 1028 1060 -hsync +vsync (63.6 kHz)
    (II) intel(0): Modeline "1280x1024"x70.0 128.94 1280 1368 1504 1728 1024 1025 1028 1066 -hsync +vsync (74.6 kHz)
    (II) intel(0): Modeline "1280x1024"x72.0 132.75 1280 1368 1504 1728 1024 1025 1028 1067 -hsync +vsync (76.8 kHz)
    (II) intel(0): EDID vendor "AIC", prod id 37968
    (II) intel(0): Output TMDS-1 connected
    (II) intel(0): Using user preference for initial modes
    (II) intel(0): Output TMDS-1 using initial mode 1280x1024
    (II) intel(0): Monitoring connected displays enabled
    (II) intel(0): detected 256 kB GTT.
    (II) intel(0): detected 7932 kB stolen memory.
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Will not try to enable page flipping
    (==) intel(0): Triple buffering disabled
    (==) intel(0): Intel XvMC decoder disabled
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) intel(0): Display dimensions: (336, 269) mm
    (WW) intel(0): Probed monitor is 370x300 mm, using Displaysize 336x269 mm
    (**) intel(0): DPI set to (120, 151)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "exa"
    (II) LoadModule: "exa"
    (II) Loading /usr/lib/xorg/modules//libexa.so
    (II) Module exa: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 2.4.0
    ABI class: X.Org Video Driver, version 4.1
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) intel(0): Comparing regs from server start up to After PreInit
    (WW) intel(0): Register 0x70024 (PIPEASTAT) changed from 0x00020203 to 0x00020000
    (WW) intel(0): PIPEASTAT before: status: VBLANK_INT_ENABLE VSYNC_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS
    (WW) intel(0): PIPEASTAT after: status: VBLANK_INT_ENABLE
    (II) Loading sub module "dri"
    (II) LoadModule: "dri"
    (II) Reloading /usr/lib/xorg/modules/extensions//libdri.so
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) intel(0): Kernel reported 238848 total, 1 used
    (II) intel(0): I830CheckAvailableMemory: 955388 kB available
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: drmOpenMinor returns 10
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) intel(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) intel(0): [drm] framebuffer mapped by ddx driver
    (II) intel(0): [drm] added 1 reserved context for kernel
    (II) intel(0): X context handle = 0x1
    (II) intel(0): [drm] installed DRM signal handler
    (**) intel(0): Framebuffer compression enabled
    (**) intel(0): Tiling enabled
    (==) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (II) intel(0): Tiled allocation successful.
    (II) intel(0): [drm] Registers = 0xfeb80000
    (II) intel(0): [drm] ring buffer = 0xd0000000
    (II) intel(0): [drm] mapped front buffer at 0xd1000000, handle = 0xd1000000
    (II) intel(0): [drm] mapped back buffer at 0xd5000000, handle = 0xd5000000
    (II) intel(0): [drm] mapped depth buffer at 0xd6000000, handle = 0xd6000000
    (II) intel(0): [drm] mapped classic textures at 0xd7000000, handle = 0xd7000000
    (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432
    (II) intel(0): [dri] visual configs initialized
    (II) intel(0): Page Flipping disabled
    (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (II) EXA(0): Offscreen pixmap area of 39321600 bytes
    (II) EXA(0): Driver registered support for the following operations:
    (II) Solid
    (II) Copy
    (II) Composite (RENDER acceleration)
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): [DRI] installation complete
    (II) intel(0): Current clock rate multiplier: 2
    (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x01000000 (pgoffset 4096)
    (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x02000000 (pgoffset 8192)
    (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x05000000 (pgoffset 20480)
    (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x06000000 (pgoffset 24576)
    (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x07000000 (pgoffset 28672)
    (II) intel(0): Fixed memory allocation layout:
    (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
    (II) intel(0): 0x00020000-0x0061ffff: compressed frame buffer (6144 kB, 0x000000003f820000 physical
    (II) intel(0): 0x00620000-0x00620fff: compressed ll buffer (4 kB, 0x000000003fe20000 physical
    (II) intel(0): 0x00621000-0x0062afff: HW cursors (40 kB, 0x000000003fe21000 physical
    (II) intel(0): 0x0062b000-0x00632fff: logical 3D context (32 kB)
    (II) intel(0): 0x00633000-0x00633fff: overlay registers (4 kB, 0x000000003fe33000 physical
    (II) intel(0): 0x007bf000: end of stolen memory
    (II) intel(0): 0x01000000-0x01ffffff: front buffer (12800 kB) X tiled
    (II) intel(0): 0x02000000-0x0457ffff: exa offscreen (38400 kB)
    (II) intel(0): 0x05000000-0x05ffffff: back buffer (12800 kB) X tiled
    (II) intel(0): 0x06000000-0x06ffffff: depth buffer (12800 kB) X tiled
    (II) intel(0): 0x07000000-0x08ffffff: classic textures (32768 kB)
    (II) intel(0): 0x10000000: end of aperture
    (WW) intel(0): ESR is 0x00000010, page table error
    (WW) intel(0): PGTBL_ER is 0x00000010, display A pte
    (WW) intel(0): Existing errors found in hardware state.
    (II) intel(0): Output configuration:
    (II) intel(0): Pipe A is on
    (II) intel(0): Display plane A is now enabled and connected to pipe A.
    (II) intel(0): Pipe B is off
    (II) intel(0): Display plane B is now disabled and connected to pipe B.
    (II) intel(0): Output TMDS-1 is connected to pipe A
    (II) intel(0): [drm] dma control initialized, using IRQ 16
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) intel(0): DPMS enabled
    (II) intel(0): Set up textured video
    (II) intel(0): Set up overlay video
    (II) intel(0): direct rendering: Enabled
    (WW) intel(0): Option "monitor-LVDS" is not used
    (--) RandR disabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: enabled GLX_texture_from_pixmap with driver support
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) intel(0): Setting screen physical size to 376 x 301
    (**) Option "Protocol" "IMPS/2"
    (**) Mouse0: Device: "/dev/input/mice"
    (**) Mouse0: Protocol: "IMPS/2"
    (**) Option "CorePointer"
    (**) Mouse0: always reports core events
    (**) Option "Device" "/dev/input/mice"
    (==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5 6 7"
    (**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
    (**) Mouse0: Buttons: 11
    (**) Mouse0: Sensitivity: 1
    (**) Option "CoreKeyboard"
    (**) Keyboard0: always reports core events
    (**) Option "Protocol" "standard"
    (**) Keyboard0: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard0: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard0: XkbModel: "pc105"
    (**) Option "XkbLayout" "us"
    (**) Keyboard0: XkbLayout: "us"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard0: CustomKeycodes disabled
    (II) evaluating device (Mouse0)
    (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    (II) evaluating device (Keyboard0)
    (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    (II) Mouse0: ps2EnableDataReporting: succeeded
    (II) UnloadModule: "mouse"
    (II) UnloadModule: "kbd"
    (II) intel(0): xf86UnbindGARTMemory: unbind key 0
    (II) intel(0): xf86UnbindGARTMemory: unbind key 1
    (II) intel(0): xf86UnbindGARTMemory: unbind key 2
    (II) intel(0): xf86UnbindGARTMemory: unbind key 3
    (II) intel(0): xf86UnbindGARTMemory: unbind key 4
    (II) intel(0): [drm] removed 1 reserved context for kernel
    (II) intel(0): [drm] unmapping 8192 bytes of SAREA 0xf8264000 at 0xb7a3f000
    (II) intel(0): [drm] Closed DRM master.
    Thanks in advance!
    Last edited by Marcel- (2010-02-16 02:06:08)

    Sorry for bumping this old topic, but I managed to workaround this problem (still the same hardware).
    The last year I used xf86-video-vesa, as the mentioned problem didn't show up using this driver (and screen rendering in X wasn't slow, so I was fine with that). After getting disturbed by some random screen flickering after KMS was enabled by default (while still adding video=791 and using xf86-video-vesa), I decided to try xf86-video-intel again combined with KMS.
    After fixing the above misconfigurations I rebooted and my screen was dropped in a console using 1280x1024@75Hz. Using several consoles for a few hours worked flawlessly. But when starting X (with an xorg.conf generated via X -configure and disabling input hotplugging) things got worse.
    At first, I didn't notice anything using black-on-white xterms. But after running Chromium I saw these flickering pixels again, a horizontal line (the bottom of the back button) showed pixels that changed colors rapidly. The problem appeared to be dependent on the contents of the screen: dark, patterned surfaces like several of these pictures acquired a lot of green pixels moving fast (I hope this is comprehensible), the "Floating Diamond" also got some rapidly changing pixels. Moreover, I got a small black line flashing every now and then.
    I thought that the refresh rate might be too high for the Intel GPU to cope with (the monitor should be able to handle this). After way too much searching, I discovered how to set a refresh rate in KMS: I added
    kernel /vmlinuz26 root=[...] ro video=1280x1024@60
    ^^^^^^^^^^^^^^^^^^
    to /boot/grub/menu.lst.
    After a reboot the refresh rate indeed dropped to 60 Hz. X stubbornly refused to stick to this (I thought it merely used the graphical mode KMS set). A bit more googling resulted in the following adjustments to xorg.conf:
    Section "Monitor"
    Identifier "Neovo F-419"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    HorizSync 31.5-64.3
    VertRefresh 50-70
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "intel"
    Option "monitor-DVI1" "Neovo F-419"
    VendorName "Intel Corporation"
    BoardName "Mobile 945GME Express Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    EndSection
    Now my X runs at 60 Hz and... the rapidly changing pixels seem to be gone (for half an hour at the moment).
    Only question that remains is: why didn't I have these glitches outside of X? Is it because text screens have relatively large areas with the same color? After all, this 'noise' was best visible on heavily patterned areas.
    And one last question: should I mention this somewhere upstream (e.g. at the xf86-video-intel people or at LKML)?

  • U430 Touch doesn't detect second monitor

    I recently got a U430 but, when I connect it to my Dell S2240L monitor using an HDMI cable, the U430 doesn't detect it.  I've tested the monitor and cable.  The display driver that came on the machine is from Intel (version 10.18.10.3379).  The supported display driver listed on the Lenovo site is also from Intel but for an earlier version (10.18.10.3277).  I've read a number of threads about a second monitor not being detected.  Hase anyone else seen this?
    Solved!
    Go to Solution.

    Hi,
    Welcome to Lenovo Community Forums!
    I’m sorry to hear that your U430 Touch Laptop is not connecting to the External Monitor, the issue should resolve if the latest display driver is installed in the computer, below are the link to automatically scan the computer and install the relevant driver from Intel and Nvidia:
    Intel display driver auto detect
    NVIDIA graphics driver auto detect
    Hope this helps!!!
    Do post us back if the issue persists
    Best Regards
    Shiva Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • [Z87 MPOWER] Monitor doesn't detect Video. LED-POST switches between numbers

    Hey folks!
    I build my first PC yesterday and sadly I came over a seemingly unsolvable problem. I made a test-run with the Motherboard on the box, GPU, PGU, RAM, CPU+Cooler. I started it and everything worked fine, but the Monitor doesn't detect graphic input! It detects the cable I uses (HDMI and AVG) AND that I plugged it into a PC, but it just switches into sleeping mode as soon as I start the PC! (The Monitor works fine on my laptop).
    Now I removed the GPU and used the onboard graphics with HDMI connection - the same problem! Now, I only have one 8GB-RAM stick, and I switched it between all 4 slots just to be sure - nothing. I double-checked the two PGU cables I have connected (8pin and 24pin ATX) - everything seems fine!
    I just can't find the problem and its driving me insane! The only thing that says that something might be wrong is this little LED thing on the mb, it switches between 10 / 19 / 15(I think, its to fast to see!) / 55 endless! That's definitely not normal is it?
    Is someone able to help me? I don't want anything more right now than getting this  working.
    SPECS:
    CPU: Intel Core i5-4670K 3.4GHz Quad-Core Processor
    Cooler: Cooler Master Hyper 212 EVO 82.9 CFM Sleeve Bearing CPU Cooler
    Motherboard: MSI Z87 MPOWER ATX LGA1150 Motherboard
    RAM: Kingston 8GB (1 x 8GB) DDR3-1600 Memory
    Asus GeForce GTX 770 2GB Video Card
    PGU: SeaSonic 520W 80+ Bronze Certified Semi-Modular ATX Power Supply
    Also if nothing works, can someone tell me what part might be the fault, so I can switch it in? 
    THANK YOU!

    You may be able to repair this.
    Remove the cpu and inspect the socket with a bright light and magnifier.
    Fine the culprit pin and straighten it if possible. If not just RMA the board.

Maybe you are looking for

  • Is it possible to put form fields on layers in Acrobat?

    I am creating evaluation forms that have 3 layers. Basically, on page 1 there are 3 buttons for the apprpriate category, and each button turns on a specific layer. The following pages have information to be filled out based on which category layer is

  • Windows 8.1 Install Fails, 8 Installs fine. (Not the usual CMPXCHG16b, PrefetchW, and LAHF/SAHF problem)

    Hi All, I have 2 machines with this problem now, both 64 bit (one a Pentium D, and one a Core 2 Duo), they both used to run Windows 7 x64, and both now have clean installed Windows 8 x86 on them (because I didnt install x64 as this a) didnt boot the

  • Powerbook Surround Sound

    I use a powerbook connected via firewire to a Motu 828mkII (which then connects to my surround sound speakers) In Logic, I have no problem sending signal to different speakers in my surround sound set up. I am having problems with playing a DTS audio

  • SOAP Requst from BW to XMLA

    HI    Iam very new to this topic.... How to send SOAP request to BW and get back data in XML format using XMLA for Analysis Thanks In Advance Guruva

  • Deleting Contingent Workers

    Hi, My client entered duplicate contingent workers. I want to delete one of the duplicate contingent worker record. Please help me regarding this. Thanks in Advance.