Repeatedly: mpd/ncmpcpp pauses for about a second or two, then plays

Hello,
I'm having trouble with mpd.  About every thirty seconds it will pauses for a second them resume playing from where it paused.  It's annoying and makes music unenjoyable.  Does anyone have any idea what could be wrong?
I appreciate any help. Please let me know if you need any additional information.
Thanks!
music_directory "/home/reid/music"
playlist_directory "/home/reid/.mpd/playlists"
db_file "/home/reid/.mpd/mpd.db"
log_file "/home/reid/.mpd/log"
pid_file "/home/reid/.mpd/mpd.pid"
state_file "/home/reid/.mpd/mpdstate"
#sticker_file "~/.mpd/sticker.sql"
# General music daemon options ################################################
# This setting specifies the user that MPD will run as. MPD should never run as
# root and you may use this setting to make MPD change its user ID after
# initialization. This setting is disabled by default and MPD is run as the
# current user.
user "reid"
# This setting specifies the group that MPD will run as. If not specified
# primary group of user specified with "user" setting will be used (if set).
# This is useful if MPD needs to be a member of group such as "audio" to
# have permission to use sound card.
#group "nogroup"
# This setting sets the address for the daemon to listen on. Careful attention
# should be paid if this is assigned to anything other then the default, any.
# This setting can deny access to control of the daemon.
# For network
#bind_to_address "any"
# And for Unix Socket
#bind_to_address "~/.mpd/socket"
# This setting is the TCP port that is desired for the daemon to get assigned
# to.
#port "6600"
# This setting controls the type of information which is logged. Available
# setting arguments are "default", "secure" or "verbose". The "verbose" setting
# argument is recommended for troubleshooting, though can quickly stretch
# available resources on limited hardware storage.
#log_level "default"
# If you have a problem with your MP3s ending abruptly it is recommended that
# you set this argument to "no" to attempt to fix the problem. If this solves
# the problem, it is highly recommended to fix the MP3 files with vbrfix
# (available from <http://www.willwap.co.uk/Programs/vbrfix.php>), at which
# point gapless MP3 playback can be enabled.
#gapless_mp3_playback "yes"
# Setting "restore_paused" to "yes" puts MPD into pause mode instead
# of starting playback after startup.
#restore_paused "no"
# This setting enables MPD to create playlists in a format usable by other
# music players.
#save_absolute_paths_in_playlists "no"
# This setting defines a list of tag types that will be extracted during the
# audio file discovery process. Optionally, 'comment' can be added to this
# list.
#metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
# This setting enables automatic update of MPD's database when files in
# music_directory are changed.
auto_update "no"
# Limit the depth of the directories being watched, 0 means only watch
# the music directory itself. There is no limit by default.
#auto_update_depth "3"
# Symbolic link behavior ######################################################
# If this setting is set to "yes", MPD will discover audio files by following
# symbolic links outside of the configured music_directory.
#follow_outside_symlinks "yes"
# If this setting is set to "yes", MPD will discover audio files by following
# symbolic links inside of the configured music_directory.
#follow_inside_symlinks "yes"
# Zeroconf / Avahi Service Discovery ##########################################
# If this setting is set to "yes", service information will be published with
# Zeroconf / Avahi.
#zeroconf_enabled "yes"
# The argument to this setting will be the Zeroconf / Avahi unique name for
# this MPD server on the network.
#zeroconf_name "Music Player"
# Permissions #################################################################
# If this setting is set, MPD will require password authorization. The password
# can setting can be specified multiple times for different password profiles.
#password "password@read,add,control,admin"
# This setting specifies the permissions a user has who has not yet logged in.
#default_permissions "read,add,control,admin"
# Input #######################################################################
input {
plugin "curl"
# proxy "proxy.isp.com:8080"
# proxy_user "user"
# proxy_password "password"
# Audio Output ################################################################
# MPD supports various audio output types, as well as playing through multiple
# audio outputs at the same time, through multiple audio_output settings
# blocks. Setting this block is optional, though the server will only attempt
# autodetection for one sound card.
# See <http://mpd.wikia.com/wiki/Configuration#Audio_Outputs> for examples of
# other audio outputs.
# An example of an ALSA output:
audio_output {
type "alsa"
name "My ALSA Device"
## device "hw:0,0" # optional
## format "44100:16:2" # optional
mixer_type "hardware" # optional
## mixer_device "default" # optional
## mixer_control "PCM" # optional
## mixer_index "0" # optional
# An example of an OSS output:
#audio_output {
# type "oss"
# name "My OSS Device"
## device "/dev/dsp" # optional
## format "44100:16:2" # optional
## mixer_type "hardware" # optional
## mixer_device "/dev/mixer" # optional
## mixer_control "PCM" # optional
# An example of a shout output (for streaming to Icecast):
#audio_output {
# type "shout"
# encoding "ogg" # optional
# name "My Shout Stream"
# host "localhost"
# port "8000"
# mount "/mpd.ogg"
# password "hackme"
# quality "5.0"
# bitrate "128"
# format "44100:16:1"
## protocol "icecast2" # optional
## user "source" # optional
## description "My Stream Description" # optional
## url "http://example.com" # optional
## genre "jazz" # optional
## public "no" # optional
## timeout "2" # optional
## mixer_type "software" # optional
# An example of a recorder output:
#audio_output {
# type "recorder"
# name "My recorder"
# encoder "vorbis" # optional, vorbis or lame
# path "/var/lib/mpd/recorder/mpd.ogg"
## quality "5.0" # do not define if bitrate is defined
# bitrate "128" # do not define if quality is defined
# format "44100:16:1"
# An example of a httpd output (built-in HTTP streaming server):
#audio_output {
# type "httpd"
# name "My HTTP Stream"
# encoder "vorbis" # optional, vorbis or lame
# port "8000"
# bind_to_address "0.0.0.0" # optional, IPv4 or IPv6
## quality "5.0" # do not define if bitrate is defined
# bitrate "128" # do not define if quality is defined
# format "44100:16:1"
# max_clients "0" # optional 0=no limit
# An example of a pulseaudio output (streaming to a remote pulseaudio server)
#audio_output {
# type "pulse"
# name "My Pulse Output"
## server "remote_server" # optional
## sink "remote_server_sink" # optional
## Example "pipe" output:
#audio_output {
# type "pipe"
# name "my pipe"
# command "aplay -f cd 2>/dev/null"
## Or if you're want to use AudioCompress
# command "AudioCompress -m | aplay -f cd 2>/dev/null"
## Or to send raw PCM stream through PCM:
# command "nc example.org 8765"
# format "44100:16:2"
## An example of a null output (for no audio output):
#audio_output {
# type "null"
# name "My Null Output"
# mixer_type "none" # optional
# This setting will change all decoded audio to be converted to the specified
# format before being passed to the audio outputs. By default, this setting is
# disabled.
#audio_output_format "44100:16:2"
# If MPD has been compiled with libsamplerate support, this setting specifies
# the sample rate converter to use. Possible values can be found in the
# mpd.conf man page or the libsamplerate documentation. By default, this is
# setting is disabled.
#samplerate_converter "Fastest Sinc Interpolator"
# Normalization automatic volume adjustments ##################################
# This setting specifies the type of ReplayGain to use. This setting can have
# the argument "off", "album" or "track". See <http://www.replaygain.org>
# for more details. This setting is off by default.
#replaygain "album"
# This setting sets the pre-amp used for files that have ReplayGain tags. By
# default this setting is disabled.
#replaygain_preamp "0"
# This setting enables on-the-fly normalization volume adjustment. This will
# result in the volume of all playing audio to be adjusted so the output has
# equal "loudness". This setting is disabled by default.
#volume_normalization "no"
# MPD Internal Buffering ######################################################
# This setting adjusts the size of internal decoded audio buffering. Changing
# this may have undesired effects. Don't change this if you don't know what you
# are doing.
#audio_buffer_size "2048"
# This setting controls the percentage of the buffer which is filled before
# beginning to play. Increasing this reduces the chance of audio file skipping,
# at the cost of increased time prior to audio playback.
#buffer_before_play "10%"
# Resource Limitations ########################################################
# These settings are various limitations to prevent MPD from using too many
# resources. Generally, these settings should be minimized to prevent security
# risks, depending on the operating resources.
#connection_timeout "60"
#max_connections "10"
#max_playlist_length "16384"
#max_command_list_size "2048"
#max_output_buffer_size "8192"
# Client TCP keep alive #######################################################
# For clients connected by TCP on supported platforms.
# Allows detection of dangling connections due to clients disappearing from
# the network without closing their connections.
# This is not usually necessary but can be useful in cases such as wifi connectected
# clients that go in and out of network range or turn off wifi without closing their
# connections. Combined with low max_connections this can soon cause clients to not
# be able to connect.
# Enable tcp keepalive on new client connections (default is "no")
#tcp_keep_alive "no"
# Time in seconds since the last communication on the connection and before
# the keepalive probing is started. (default is 7200 seconds)
#tcp_keep_alive_idle "7200"
# Interval in seconds between keepalive probes, once a probe started.
# (default is 75 seconds)
#tcp_keep_alive_interval "75"
# Number of failed probes before the connection is pronounced dead and
# the connection is closed. (default is 9 times)
#tcp_keep_alive_count "9"
# Character Encoding ##########################################################
# If file or directory names do not display correctly for your locale then you
# may need to modify this setting.
#filesystem_charset "UTF-8"
# This setting controls the encoding that ID3v1 tags should be converted from.
#id3v1_encoding "ISO-8859-1"
# SIDPlay decoder #############################################################
# songlength_database:
# Location of your songlengths file, as distributed with the HVSC.
# The sidplay plugin checks this for matching MD5 fingerprints.
# See http://www.c64.org/HVSC/DOCUMENTS/Songlengths.faq
# default_songlength:
# This is the default playing time in seconds for songs not in the
# songlength database, or in case you're not using a database.
# A value of 0 means play indefinitely.
# filter:
# Turns the SID filter emulation on or off.
#decoder {
# plugin "sidplay"
# songlength_database "/media/C64Music/DOCUMENTS/Songlengths.txt"
# default_songlength "120"
# filter "true"

Hello,
Thanks for the reply.  I have a quad core processor and 8 gigs of ram.
I've thought that maybe udev isn't loading the best audio driver for my system.
lshw:
vizio
description: All In One
product: CA24 (CA24-A2)
vendor: VIZIO
serial: VIZAS127EH0706Q
width: 64 bits
capabilities: smbios-2.7 dmi-2.7 vsyscall32
configuration: boot=normal chassis=all-in-one sku=CA24-A2 uuid=84D9DA22-F2CE-E111-B141-0F02CCF30E00
*-core
description: Motherboard
product: XV1
vendor: Quanta
physical id: 0
serial: QTCXV130H22800231
*-firmware
description: BIOS
vendor: AMI
physical id: 0
version: 1.02
date: 05/21/2012
size: 64KiB
capacity: 2496KiB
capabilities: pci upgrade shadowing cdboot bootselect socketedrom edd int13floppy1200 int13floppy720 int13floppy2880 int5printscreen int9keyboard int14serial int17printer acpi usb biosbootspecification uefi
*-cache:0
description: L2 cache
physical id: 11
slot: CPU Internal L2
size: 1MiB
capacity: 1MiB
capabilities: internal write-through unified
*-cache:1
description: L1 cache
physical id: 12
slot: CPU Internal L1
size: 256KiB
capacity: 256KiB
capabilities: internal write-through data
*-cache:2
description: L3 cache
physical id: 13
slot: CPU Internal L3
size: 6MiB
capacity: 6MiB
capabilities: internal write-back unified
*-memory
description: System Memory
physical id: 14
slot: System board or motherboard
size: 8GiB
*-bank:0
description: SODIMM DDR3 Synchronous 1333 MHz (0.8 ns)
product: AD73I1C1674EV
vendor: ADATA
physical id: 0
serial: 00000E9D
slot: ChannelA-DIMM0
size: 4GiB
width: 64 bits
clock: 1333MHz (0.8ns)
*-bank:1
description: DIMM [empty]
product: [Empty]
vendor: [Empty]
physical id: 1
serial: [Empty]
slot: ChannelA-DIMM1
*-bank:2
description: SODIMM DDR3 Synchronous 1333 MHz (0.8 ns)
product: AD73I1C1674EV
vendor: ADATA
physical id: 2
serial: 00000EA6
slot: ChannelB-DIMM0
size: 4GiB
width: 64 bits
clock: 1333MHz (0.8ns)
*-bank:3
description: DIMM [empty]
product: [Empty]
vendor: [Empty]
physical id: 3
serial: [Empty]
slot: ChannelB-DIMM1
*-cpu
description: CPU
product: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz
vendor: Intel Corp.
physical id: 15
bus info: cpu@0
version: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz
slot: SOCKET 0
size: 1200MHz
capacity: 3800MHz
width: 64 bits
clock: 100MHz
capabilities: x86-64 fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms cpufreq
configuration: cores=4 enabledcores=4 threads=8
*-pci
description: Host bridge
product: 3rd Gen Core processor DRAM Controller
vendor: Intel Corporation
physical id: 100
bus info: pci@0000:00:00.0
version: 09
width: 32 bits
clock: 33MHz
configuration: driver=agpgart-intel
resources: irq:0
*-pci:0
description: PCI bridge
product: Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port
vendor: Intel Corporation
physical id: 1
bus info: pci@0000:00:01.0
version: 09
width: 32 bits
clock: 33MHz
capabilities: pci pm msi pciexpress normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:40 ioport:e000(size=4096) memory:f6000000-f70fffff ioport:e0000000(size=301989888)
*-display UNCLAIMED
description: VGA compatible controller
product: NVIDIA Corporation
vendor: NVIDIA Corporation
physical id: 0
bus info: pci@0000:01:00.0
version: a1
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress vga_controller cap_list
configuration: latency=0
resources: memory:f6000000-f6ffffff memory:e0000000-efffffff memory:f0000000-f1ffffff ioport:e000(size=128) memory:f7000000-f707ffff
*-display
description: VGA compatible controller
product: 3rd Gen Core processor Graphics Controller
vendor: Intel Corporation
physical id: 2
bus info: pci@0000:00:02.0
version: 09
width: 64 bits
clock: 33MHz
capabilities: msi pm vga_controller bus_master cap_list rom
configuration: driver=i915 latency=0
resources: irq:45 memory:f7400000-f77fffff memory:d0000000-dfffffff ioport:f000(size=64)
*-usb:0
description: USB controller
product: 7 Series/C210 Series Chipset Family USB xHCI Host Controller
vendor: Intel Corporation
physical id: 14
bus info: pci@0000:00:14.0
version: 04
width: 64 bits
clock: 33MHz
capabilities: pm msi xhci bus_master cap_list
configuration: driver=xhci_hcd latency=0
resources: irq:46 memory:f7900000-f790ffff
*-communication
description: Communication controller
product: 7 Series/C210 Series Chipset Family MEI Controller #1
vendor: Intel Corporation
physical id: 16
bus info: pci@0000:00:16.0
version: 04
width: 64 bits
clock: 33MHz
capabilities: pm msi bus_master cap_list
configuration: driver=mei latency=0
resources: irq:43 memory:f791b000-f791b00f
*-usb:1
description: USB controller
product: 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2
vendor: Intel Corporation
physical id: 1a
bus info: pci@0000:00:1a.0
version: 04
width: 32 bits
clock: 33MHz
capabilities: pm debug ehci bus_master cap_list
configuration: driver=ehci_hcd latency=0
resources: irq:16 memory:f7918000-f79183ff
*-multimedia
description: Audio device
product: 7 Series/C210 Series Chipset Family High Definition Audio Controller
vendor: Intel Corporation
physical id: 1b
bus info: pci@0000:00:1b.0
version: 04
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: driver=snd_hda_intel latency=0
resources: irq:41 memory:f7910000-f7913fff
*-pci:1
description: PCI bridge
product: 7 Series/C210 Series Chipset Family PCI Express Root Port 1
vendor: Intel Corporation
physical id: 1c
bus info: pci@0000:00:1c.0
version: c4
width: 32 bits
clock: 33MHz
capabilities: pci pciexpress msi pm normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:16
*-pci:2
description: PCI bridge
product: 7 Series/C210 Series Chipset Family PCI Express Root Port 3
vendor: Intel Corporation
physical id: 1c.2
bus info: pci@0000:00:1c.2
version: c4
width: 32 bits
clock: 33MHz
capabilities: pci pciexpress msi pm normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:18 ioport:d000(size=4096) ioport:f2100000(size=1048576)
*-network
description: Ethernet interface
product: RTL8111/8168B PCI Express Gigabit Ethernet controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:03:00.0
logical name: eth0
version: 07
serial: 00:6b:9e:03:62:f4
size: 10Mbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half firmware=rtl8168e-3_0.0.4 03/27/12 latency=0 link=no multicast=yes port=MII speed=10Mbit/s
resources: irq:44 ioport:d000(size=256) memory:f2104000-f2104fff memory:f2100000-f2103fff
*-pci:3
description: PCI bridge
product: 7 Series/C210 Series Chipset Family PCI Express Root Port 6
vendor: Intel Corporation
physical id: 1c.5
bus info: pci@0000:00:1c.5
version: c4
width: 32 bits
clock: 33MHz
capabilities: pci pciexpress msi pm normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:17 memory:f7800000-f78fffff
*-network
description: Wireless interface
product: AR9462 Wireless Network Adapter
vendor: Atheros Communications Inc.
physical id: 0
bus info: pci@0000:04:00.0
logical name: wlan0
version: 01
serial: 00:6b:9e:00:ab:6f
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list rom ethernet physical wireless
configuration: broadcast=yes driver=ath9k driverversion=3.5.4-1-ARCH firmware=N/A ip=192.168.1.139 latency=0 link=yes multicast=yes wireless=IEEE 802.11abgn
resources: irq:17 memory:f7800000-f787ffff memory:f7880000-f788ffff
*-usb:2
description: USB controller
product: 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1
vendor: Intel Corporation
physical id: 1d
bus info: pci@0000:00:1d.0
version: 04
width: 32 bits
clock: 33MHz
capabilities: pm debug ehci bus_master cap_list
configuration: driver=ehci_hcd latency=0
resources: irq:23 memory:f7917000-f79173ff
*-isa
description: ISA bridge
product: HM77 Express Chipset LPC Controller
vendor: Intel Corporation
physical id: 1f
bus info: pci@0000:00:1f.0
version: 04
width: 32 bits
clock: 33MHz
capabilities: isa bus_master cap_list
configuration: driver=lpc_ich latency=0
resources: irq:0
*-storage
description: RAID bus controller
product: 82801 Mobile SATA Controller [RAID mode]
vendor: Intel Corporation
physical id: 1f.2
bus info: pci@0000:00:1f.2
version: 04
width: 32 bits
clock: 66MHz
capabilities: storage msi pm bus_master cap_list
configuration: driver=ahci latency=0
resources: irq:42 ioport:f0b0(size=8) ioport:f0a0(size=4) ioport:f090(size=8) ioport:f080(size=4) ioport:f060(size=32) memory:f7916000-f79167ff
*-serial UNCLAIMED
description: SMBus
product: 7 Series/C210 Series Chipset Family SMBus Controller
vendor: Intel Corporation
physical id: 1f.3
bus info: pci@0000:00:1f.3
version: 04
width: 64 bits
clock: 33MHz
configuration: latency=0
resources: memory:f7915000-f79150ff ioport:f040(size=32)
*-scsi:0
physical id: 1
logical name: scsi0
capabilities: emulated
*-disk
description: ATA Disk
product: ST1000LM024 HN-M
vendor: Seagate
physical id: 0.0.0
bus info: scsi@0:0.0.0
logical name: /dev/sda
version: 2AR1
serial: S2R8J9CC612158
size: 931GiB (1TB)
capabilities: partitioned partitioned:dos
configuration: ansiversion=5 sectorsize=4096 signature=0002dcaf
*-volume:0
description: EXT4 volume
vendor: Linux
physical id: 1
bus info: scsi@0:0.0.0,1
logical name: /dev/sda1
logical name: /home
version: 1.0
serial: 86f08c55-b73d-4c19-a427-04c076aa2956
size: 928GiB
capacity: 928GiB
capabilities: primary journaled extended_attributes large_files huge_files dir_nlink recover extents ext4 ext2 initialized
configuration: created=2012-09-29 11:54:11 filesystem=ext4 lastmountpoint=/home modified=2012-10-04 09:08:33 mount.fstype=ext4 mount.options=rw,relatime,data=ordered mounted=2012-10-04 09:08:33 state=mounted
*-volume:1
description: Linux swap volume
physical id: 2
bus info: scsi@0:0.0.0,2
logical name: /dev/sda2
version: 1
serial: 839f0cea-c59f-4e7b-90e5-c28d3e2fcca4
size: 3053MiB
capacity: 3053MiB
capabilities: primary nofs swap initialized
configuration: filesystem=swap pagesize=4096
*-scsi:1
physical id: 2
logical name: scsi1
capabilities: emulated
*-disk
description: ATA Disk
product: Toshiba THNSNW03
vendor: Toshiba
physical id: 0.0.0
bus info: scsi@1:0.0.0
logical name: /dev/sdb
version: L041
serial: 23RJ613KAFSK
size: 29GiB (32GB)
capabilities: partitioned partitioned:dos
configuration: ansiversion=5 sectorsize=512 signature=00051de3
*-volume
description: Linux filesystem partition
vendor: Linux
physical id: 1
bus info: scsi@1:0.0.0,1
logical name: /dev/sdb1
logical name: /
version: 1.0
serial: a9ba0f2f-aba4-47ae-b3bc-78ced3fb41d5
size: 29GiB
capacity: 29GiB
capabilities: primary bootable extended_attributes large_files ext2 initialized
configuration: filesystem=ext2 lastmountpoint=/ modified=2012-10-05 11:51:10 mount.fstype=ext2 mount.options=rw,relatime mounted=2012-10-04 09:08:33 state=mounted
*-scsi:2
physical id: 3
bus info: usb@1:3
logical name: scsi6
capabilities: emulated scsi-host
configuration: driver=usb-storage
*-disk
description: SCSI Disk
physical id: 0.0.0
bus info: scsi@6:0.0.0
logical name: /dev/sdc
size: 465GiB (500GB)
capabilities: partitioned partitioned:dos
configuration: sectorsize=512 signature=9c3c778f
*-volume
description: EXT3 volume
vendor: Linux
physical id: 1
bus info: scsi@6:0.0.0,1
logical name: /dev/sdc1
logical name: /data
version: 1.0
serial: 334c8b3e-ab70-4702-81f1-0bd0ce6af1e9
size: 465GiB
capacity: 465GiB
capabilities: primary bootable journaled extended_attributes large_files recover ext3 ext2 initialized
configuration: created=2012-01-26 18:25:12 filesystem=ext3 lastmountpoint=/data modified=2012-10-04 10:24:08 mount.fstype=ext3 mount.options=rw,relatime,data=ordered mounted=2012-10-04 10:24:08 state=mounted
lsmod
Module Size Used by
sg 25423 0
udf 79515 1
crc_itu_t 1363 1 udf
loop 18160 2
bbswitch 5042 0
joydev 9991 0
btusb 11892 0
bluetooth 193532 2 btusb
ums_realtek 7391 0
snd_hda_codec_cirrus 17229 1
uvcvideo 72339 0
videobuf2_vmalloc 2468 1 uvcvideo
videobuf2_memops 2246 1 videobuf2_vmalloc
videobuf2_core 20575 1 uvcvideo
videodev 100564 2 uvcvideo,videobuf2_core
media 10405 2 uvcvideo,videodev
microcode 12377 0
aesni_intel 42907 2
iTCO_wdt 5989 0
aes_x86_64 7508 1 aesni_intel
aes_generic 26138 2 aesni_intel,aes_x86_64
ghash_clmulni_intel 4237 0
iTCO_vendor_support 1929 1 iTCO_wdt
cryptd 8741 2 ghash_clmulni_intel,aesni_intel
arc4 1410 2
usb_storage 44760 2 ums_realtek
mxm_wmi 1425 0
uas 8823 0
ath9k 93564 0
ath9k_common 2096 1 ath9k
snd_hda_intel 25700 4
ath9k_hw 341950 2 ath9k_common,ath9k
snd_hda_codec 97432 2 snd_hda_intel,snd_hda_codec_cirrus
i915 473038 2
snd_hwdep 6300 1 snd_hda_codec
ath 15393 3 ath9k_common,ath9k,ath9k_hw
kvm 363714 0
mac80211 416391 1 ath9k
i2c_algo_bit 5391 1 i915
snd_pcm 74926 3 snd_hda_codec,snd_hda_intel
coretemp 6006 0
snd_page_alloc 7217 2 snd_pcm,snd_hda_intel
drm_kms_helper 32749 1 i915
snd_timer 18966 2 snd_pcm
crc32c_intel 1987 0
evdev 10266 12
cfg80211 173210 3 ath,ath9k,mac80211
snd 60021 12 snd_hwdep,snd_timer,snd_pcm,snd_hda_codec,snd_hda_intel,snd_hda_codec_cirrus
drm 220804 3 i915,drm_kms_helper
r8169 51909 0
rfkill 15604 3 cfg80211,bluetooth
soundcore 5442 1 snd
pcspkr 1899 0
mei 32583 0
intel_agp 11096 1 i915
i2c_i801 8212 0
lpc_ich 10545 0
intel_gtt 14478 3 i915,intel_agp
mfd_core 2833 1 lpc_ich
i2c_core 20508 6 drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit,videodev
mii 4123 1 r8169
acpi_cpufreq 5933 0
thermal 7959 0
mperf 1267 1 acpi_cpufreq
processor 27015 9 acpi_cpufreq
wmi 8475 1 mxm_wmi
video 11308 1 i915
button 4502 1 i915
vboxdrv 1823501 0
ext4 438999 3
crc16 1359 2 ext4,bluetooth
jbd2 78720 1 ext4
mbcache 5977 1 ext4
sd_mod 29271 7
hid_generic 1113 0
usbhid 36812 0
hid 85608 2 hid_generic,usbhid
ehci_hcd 41058 0
ahci 20549 3
libahci 20023 1 ahci
libata 167675 2 ahci,libahci
scsi_mod 133152 5 sg,uas,usb_storage,libata,sd_mod
xhci_hcd 84338 0
usbcore 147434 8 uas,btusb,uvcvideo,ums_realtek,usb_storage,ehci_hcd,usbhid,xhci_hcd
usb_common 954 1 usbcore

Similar Messages

  • When my iPhone 4s plays music it pauses for about 4 seconds then plays

    I don't know what to do. I have only had my iPhone for about 2-3 months and suddenly this happens. It really annoys me when I am playing music on my headphones or out loud because it sounds like its broken. If there is a problem am I ensured by apple.

    Hello sound_freak,
    Thank you for the details of the issue you are experiencing when connecting your iPod to your your Wadia 170i dock.  I recommend reviewing the article below to further isolate and troubleshoot an issue like this (you can skip any steps you have already taken):
    Troubleshooting iPhone, iPad, and iPod touch accessories
    http://support.apple.com/kb/TS2634
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • My iphone wont turn on, it keeps loading for the longest time and then the apple logo appears for about 10 seconds and then glitches to the color blue and repeats.What do i do?

    My iphone wont turn on, it keeps loading for the longest time and then the apple logo appears for about 10 seconds and then glitches to the color blue and repeats.What do i do?

    Hi there e12345,
    You may find the troubleshooting steps in the article below helpful.
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/ts3281
    -Griff W. 

  • My (2008) macbook pro, running 10.5.8 runs for about 30 seconds and then goes into deep sleep mode.  After significant difficulty awakening, it runs for 30 seconds and....start repeating here.  It did this once before about a year ago.

    .....and then goes into deep sleep mode.  When it (finally) awakens....it runs for about 30 seconds and.....start repeating here.
    And yes, I've shut dwn and restarted multiple times, rebooted in terminal mode and run fsck, rebooted and reset the parameter ram, yadda-yadda......
    Anybdy got any ideas?

    Power or other problems related to unexpected system sleep, shutdown, lights or fans call for an SMC reset. Read all the steps.
    Before Resetting the SMC
    Try each of the following steps in this order before you reset the SMC. Test the issue after completing each troubleshooting step to determine if the issue still occurs.
    Press Command + Option + Escape to force quit any application that is not responding.
    Put your Mac to sleep by choosing the Apple () menu from the upper-left menu bar and then choosing Sleep. Wake the computer after it has gone to sleep.
    Restart your Mac by choosing the Apple () menu from the upper-left menu bar and then choosing Restart.
    Shut down your Mac by choosing the Apple () menu from the upper-left menu bar and then choosing Shut Down.
    Resetting the SMC on Mac portables with a battery you can remove
    Shut down the computer.
    Disconnect the MagSafe power adapter from the computer, if it's connected.
    Remove the battery (to remove the battery - click here: MacBook or MacBook Pro).
    Press and hold the power button for 5 seconds.
    Release the power button.
    Reconnect the battery and MagSafe power adapter.
    Press the power button to turn on the computer.
    Still having problems? Replace steps 6 and 7 with the following:
    Reconnect just the MagSafe power adapter.
    Press the power button to turn on the computer,
    Then reconnect the battery.
    Resetting the SMC on portables with a battery you should not remove on your own
    Shut down the computer.
    Plug in the MagSafe power adapter to a power source, connecting it to the Mac if it's not already connected.
    On the built-in keyboard, press the (left side) Shift-Control-Option keys and the power button at the same time. The power adapter indicator light may cycle off / on once.
    Release all the keys and the power button at the same time.
    Press the power button to turn on the computer.

  • Red light for about 3 seconds, then a white screen with a sandclock = continuous (8310)

    Hey everyone. I'm new to this whole Blackberry talk, so I'll try to go into as much detail as i can with my problem!
    I bought this from product from somebody on the internet. Well, my phone was just on my desk earlier today, working perfectly fine, when all of a sudden the screen became black, and the light at the top of my phone stayed red for about 3 seconds. The screen would then turn white afterwards and the sand timer would be there, and that would happen for about 5-10 seconds, then it would turn black and the red light would appear, then the white screen with the sand timer. Therefore it's repeating itself.
    From what i've tried to understand, I have taken the battery out of the phone for a good amount of time, 15 minutes, and yet nothing. When i always put the battery back, it automatically goes to the black screen with red light.
    I've also tried to push the reset button at the bottom left beside the battery, and that doesn't work either.
    I don't have the slightest clue on what OS, and how to use the desktop manager either.
    If someone can help me with this, I'd totally appreciate it!
    Thanks!

    Here's a link to the basics:
    http://crackberry.com/blackberry-101-how-lecture-series
    look at 12 and 22
    Let us know how it comes out!
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • When using my ipad air it keeps coming off the page I'm on or app and going back to the home screen. Also when using my ipad the screen will go white with a black apple icon in the middle for about 20 seconds then it makes a ping

    When using my ipad air it keeps coming off the page I'm on or app I am using and going back to the home screen. Also when using my ipad the screen will go white with a black apple icon in the middle for about 20 seconds then it makes a ping sound and goes to the home screen. Could anyone help please. Thank you :-)

    Read here:
    http://help.apple.com/ipad/8/#/iPad9a245e3e

  • Firefox stops responding for about 30 seconds after hitting Enter on any website's search bar, even the built in Google search or when signing into Facebook.

    As the title says, I run Firefox Beta 6 and just reinstalled Windows 7 Professional on my system due to seriously messed up Windows update, and when I downloaded and installed Firefox, I noticed every time I searched using the Google search next to the URL bar, FF would freeze for about 30 seconds to a minute, with nothing running in the background and no other programs running. I also disabled all Add-Ons and it still continues to act up, so that leads me to believe it's a FF issue, but even on every other website when using the search bar as soon as I hit enter, it locks up and stops responding then goes back to normal about 30 secs later, or if I sign into Facebook it does the same, and even when I had the FF 5 Beta before I had to reinstall I never had a problem.

    I managed to solve this problem as my computer has been giving me problems lately and completely froze on me the other day thanks to Game Booster Beta 3 and completely screwed with Windows 7 to the point I almost had to reinstall again, but I managed to fix all my problems and if you would just follow my link here over to my post on Seven Forums then it would be easier then explaining it again.
    http://www.sevenforums.com/system-security/180714-windows-7-professional-64-bit-logs-but-almost-frozen-3.html#post1550277 The reason for this is if you shut down your computer while running Firefox, it's possible you corrupted your User Profile for FF and if you follow my instructions you can repair it instead of making a new, so just follow the link, read my post and if you have anymore problems just message me on Seven Forums. Have a nice day and hopefully you get it all fixed. :b

  • Firefox 3.6.12 won't open under WinXP. Have uninstalled/reinstalled several times. When I start the program (including safe mode) I see a Firefox process appear for about 3 seconds, then disappear. Run full scan with Norton with no malware discovered.

    I've used Firefox for years with no problems. I've not installed any new extensions or programs between the time it worked great and when the problem began.
    I click to start FF (shortcut, directly on program file, etc.) and I get an hourglass for a couple of seconds like it's starting, then nada. As mentioned, I see FF show up as a process in Task Manager for about 3 seconds, then disappear.
    Solutions I've tried include: Uninstall/reinstall on the same drive and a separate drive, registry cleanup/optimization w/Norton Utilities, full scan for malware/viruses with Norton, stopping some autostartup programs that were installed and in use while FF was running fine.

    I've used Firefox for years with no problems. I've not installed any new extensions or programs between the time it worked great and when the problem began.
    I click to start FF (shortcut, directly on program file, etc.) and I get an hourglass for a couple of seconds like it's starting, then nada. As mentioned, I see FF show up as a process in Task Manager for about 3 seconds, then disappear.
    Solutions I've tried include: Uninstall/reinstall on the same drive and a separate drive, registry cleanup/optimization w/Norton Utilities, full scan for malware/viruses with Norton, stopping some autostartup programs that were installed and in use while FF was running fine.

  • When I compose an email in either gmail or yahoo, the cursor lags behind for about 2 seconds. This does not happen when I compose an email with Safari or Chrome. I am using a Mac with Firefox version 3.6.3. Any idea why this happens?

    When I compose an email in either gmail or yahoo, the cursor lags behind for about 2 seconds. This does not happen when I compose an email with Safari or Chrome. I am using a Mac with Firefox version 3.6.3. Any idea why this happens?
    == This happened ==
    Every time Firefox opened

    try
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • I got my iPhone stolen at a party, the next day my friend gave me back my iPhone 4s and he said that it was jailbroken. Now it will not turn on. When i plug it in to a charger, the apple logo appears for about ten second, then connect to iTunes stays on.

    Hello, i have a question on my iphone 4s. I went to a party a few days ago and it had gotten stolen. The next day my friend said that he had found it and it was jaibroken? The phone was on 1 % when i had recieved it. It then died and i plugged it in to the charger. When i plugged it in the apple logo appeared as if it was starting but, it wasnt. The apple logo appeared for about ten seconds and then the screen went black. After that, the connect to itunes screen popped up and will not go away. So now when i take it off of the charger the screen just stays black and wont turn on? I tried connecting it to itunes and restoring it. But it wont even show my phone any more on the side of itunes. I tried restoring it and an error had occured (2001). I have looked up on youtube how to fix this problem and non of them have helped or worked. Its my only phone and i cant even text my girlfriend which bothers me terribly!! Please help me ASAP!!

    The terms of service of the Apple Support Communities prevent us from helping anyone with a jailbroken phone.
    You're on your own.  Good luck.

  • I have just started with apple tv. I rented and downloaded a movie from itunes on my macbook pro and tried to watch it. I got the movie up, but it only played a picture for about 3 seconds and then stopped, also no sound? What am I doing wrong?

    Please help me play a rented itunes video on apple tv. Have a pictue and movie runs for about three seconds, and then stops. No sound? But I can play any music from my library with sound?

    Is the movie still buffering? you may have a slow internet connection. Music files require far less bandwidth than movies.

  • I am not able to access the "Settings" on my iPad 3. I just get a gray screen for about 30 seconds and then the app shuts down. I am also unable to access the App store, iTunes, or any app requiring an internet connection. Any thoughts?

    I am not able to access the "Settings" on my iPad 3. I just get a gray screen for about 30 seconds and then the app shuts down. I am also unable to access the App store, iTunes, or any app requiring an internet connection. Any thoughts?

    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."

  • Whenever I go to preview a song in itunes, the song with play out for about 10 seconds and then stop. Why isn't the song previews working? How can I fix this? I tried updating my itunes and it didn't work.

    Whenever I go to preview a song in itunes, the song with play out for about 10 seconds and then stop. Why isn't the song previews working? How can I fix this? I tried updating my itunes and it didn't work. I use windows 7. Thanks!

    Try:                           
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • G50-70: empty DVD-drive clicking and freezing other drives for about 30 seconds all the time

    Hello board. Big problem. Seem to be the only one having this after searching the board:
    Brand new G50-70: When using OS from the SSD or using OS from the SSD and doing things with a USB-drive, the empty internal DVD-drive making clicking sound and sometimes freezing SSD read/write operation for about 30 seconds but all the time freezing USB-storage read/write operation for about 30 seconds.
    When freezing there's always clicking. But when clicking there's not always freezing except when using USB-storage.
    OS is Win81-64.
    An example scenario: connect USB stick, open terminal, type diskpart, dvd-drive clicks and freezes opening of diskpart for about 30 seconds, then the same may or may not happen when entering commands like clear the stick and format the stick.
    Any clues, why I have this issue? Thank you very much for reading.
    Solved!
    Go to Solution.

    hi georg43,
    it's possible that there's a software running on startup that's accessing the ODD when the machine is being used (especially if the ODD LED blinks when it's being accessed)..
    To check, you can perform a clean boot to temporarily disable apps & services running on startup. If the machine functions properly on a clean boot, you will need to enable the startup services/programs that you have disabled in groups of two or three (trial and error) to find the culprit. You can start by enabling the lenovo services and apps first followed by the Intel ones and observe.
    In addition, you can also try to disable the DVD-drive under device manager and observe.
    - Link to picture
    Regards
    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!

  • Adobe Acrobat 9 Pro Extended hangs for about 12 seconds ... please help!

    Hi there,
    I'm using Adobe Acrobat 9 Pro Extended and have the following problem:
    I can open PDF documents just fine. But after about 3-4 seconds the program hangs / freezes for about 12 seconds. I've tried everything (defined a non-network printer as default printer, deactivated unecessary fonts with a font manager, deactivated most of the plugins from Adobe Acrobat etc.)... nothing helps to solve this issue.
    Can anybody give me a hint or have a solution for this ???
    Thanks for your help!

    I do have the same problem but I'm OSX 10.6.8
    I have a Phaser 7500, and it works fine with ID, PS, AI, and Acrobat Reader 9.5
    But crashes with Acrobat Pro 9.5 and Lightroom 3.6
    Latest drivers for the Phaser in installed, tried the Repais Acrobat Installation but
    it' says it isn't necesary
    Process:         AdobeAcrobat [6142]
    Path:            /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         9.5.0 (9.5.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [178]
    Date/Time:       2012-01-23 17:35:51.285 +0100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          573578 sec
    Per-App Interval Since Last Report:  318700 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      2FBD03A6-9A6E-407D-B683-2DA98F1D700F
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000030000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Maybe you are looking for

  • Can't click taskbar on startup windows 7

    Hello, i am having a problem with windows 7.  I just recently upgraded from windows vista ultimate to windows 7 home premium.  Every time i start my computer i can't click or right click the taskbar or any open window.  I have to hit ctrl-alt-delete

  • How can  i know the location of rmiregistry throught the batch file ????!!!

    i would make a batch file that launch my java application wich uses RMIREGISTRY, is there a way to know the path where is located the "rmiregistry file" -if it exists- in the client machine throught the batch file in order to start it befor to launch

  • Adobe form Logo does not display

    hi Adobe masters, I  am trying to upload logo onto my adobe form.... I have inserted image but when i view from the output the logo is not displayed. when i right click the image i cannot see OBJECT to bind it. where have i gone wrong...how can i dis

  • To check the checkbox dynamically used in thmlb tag

    Hi all, I am new to crm 2007,   I have added a thtmlb tab to create a checkbox. I am able to get checkbox event to get value of the check box and process. But when reopen the  view the check box should be checked  dynamically depending on the conditi

  • Java Beans System.out.println Log file

    Helllo, I have Forms 11.1.2 installed on linux. I developed a java bean and put some System.out.println() statements. The bean itself is working but where do i look for the debug statement logs that i am generating via System.out.println() statements