Latin MIDI loops don't load the right kit

I tried to pull in the Software Instrument Loop: Latin Percussion 01 Loop from the Apple Loop Browser and the result is completely different from the preview you get out of the Browser. The patch that seems to be loaded when you drag it to let it make its own track is Crystal  Pad.esi, which I searched for in the library and is not there. I tried a couple of the latin kits and they still have the irritating 16th note whistle. selecting notes in the piano roll editor and there seems to be some notes mapped to nothing.
Is there a kit somwhere that plays this loop properly? I looked through World and Legacy/World and nothing I tried comes close. Perhaps there is a key map out there or some environment patch?

What version of oracle you have? CBO work is different in 9i and 10g.
Usually cost based optimizer do not want to use index for >< condition with binding variables because optimizer can not use statistic to determine selectivity, and by default selectivity of <> operators is low.
(As I remember '>' selectivity by default is 5%, you have two conditions > and <, therefore resulting selectivity will be 0.05*0.05=0.0025 as two independent events, but selectivity of other conditions
ORDER_MVTS.MVT_TYPE = 'DELIVERY' or ORDER.CUSTOMER_CODE = 'ADIDAS' looks much better for CBO)
The best solution I see is do not use binding variables. Actually your query looks as searching query, which executes not so often, therefore you will not have perfomance win along of skipping execution plan creation.
Edited by: JustasVred on Apr 1, 2009 10:10 AM

Similar Messages

  • Query don't use the right index when using bind variables

    Hi people !
    I need some help because I have an issue with a query that don t use the right Indexes as it should
    First of all, I have mainly three tables :
    ORDER : Table that contains description for each Order (approximately 1 000 000 Records)
    ORDER_MVTS : Table that contains the tasks made (called movements) to set up each Orders
    with quantity of packages prepared for each product (approximately 10 000 000 Records)
    PRODUCT : Tables that contains the products (approximately 50 000 Records)
    When I launch the query with hard coded values, it brings back response very fast
    because it uses the right index (ORDER_DHR_VALID) which represent the date and hour of the order
    (with format 'DD/MM/YYYY HH24:MI:SS'). The selectivity for this index is good.
    NB 1: I have to use the trick " >= Trunc(date) and < trunc(date) +1 " to filter on a simple date because
    the index contains hour and minutes (I know it wasn't probably a bright idea at conception time).
    NB 2: The index on ORDER_MVTS.PRODUCT_CODE is'nt discriminating enough because there is'nt enough different products.
    It's the same for index on CUSTOMER_CODE and on MVT_TYPE so only the index on ORDER.DHR_VALID is good.
    Here is the correct explain plan when I execute the query with hard coded values :
    SELECT SUM(ORDER_MVTS.NB_PACKAGE)
    FROM ORDER_MVTS, PRODUCT, ORDER
    WHERE ORDER.DHR_VALID >= TRUNC(to_date('14/11/2008 10:04:56','DD/MM/YYYY HH24:MI:SS'))
    AND ORDER.DHR_VALID < TRUNC(to_date('14/11/2008 10:04:56','DD/MM/YYYY HH24:MI:SS')) + 1
    AND ORDER_MVTS.MVT_TYPE = 'DELIVERY'
    AND PRODUCT.CODE = ORDER_MVTS.PRODUCT_CODE
    AND ORDER_MVTS.ORDER_CODE = ORDER.CODE
    AND ORDER.CUSTOMER_CODE = 'ADIDAS'
    AND PRODUCT.CODE = 1234
    Rows Row Source Operation
    1 SORT AGGREGATE
    2 NESTED LOOPS
    4 NESTED LOOPS
    2 INDEX UNIQUE SCAN (object id 378548) --> PRODUCT_PK
    4 TABLE ACCESS BY INDEX ROWID ORDER
    777 INDEX RANGE SCAN (object id 378119) --> ORDER_DHR_VALID
    2 TABLE ACCESS BY INDEX ROWID ORDER_MVTS
    30 INDEX RANGE SCAN (object id 377784) --> ORDER_MVTS_ORDER_FK
    Now the problem is when the query is used in a Cursor with bind variables.
    It seems like Oracle don't use index on ORDER.DHR_VALID because he can't figure out that he have
    to actually filter on a short period of time (only one day).
    So Oracle uses the index on ORDER_MVTS.PRODUCT_CODE which is'nt a bright idea (it takes 10 secondes instead of just one)
    Here is the bad explain plan :
    Rows Row Source Operation
    1 SORT AGGREGATE
    2 NESTED LOOPS
    722 NESTED LOOPS
    2 INDEX UNIQUE SCAN (object id 378548) --> PRODUCT_PK
    722 TABLE ACCESS BY INDEX ROWID ORDER_MVTS
    1790 INDEX RANGE SCAN (object id 377777) --> ORDER_MVTS_PRODUCT_FK
    2 TABLE ACCESS BY INDEX ROWID ORDER
    1442 INDEX UNIQUE SCAN (object id 378439) --> ORDER_PK
    Now I have found two solutions to this problem :
    1) using a Hint to force the use of index on ORDER.DHR_VALID (with /*+ INDEX(ORDER ORDER_DHR_VALID) */ )
    2) Using Dynamic SQL and keeping the date hard coded (but not the other values except mvt_type)
    For example :
    QUERY :=
    'SELECT SUM(ORDER_MVTS.NB_PACKAGE)
    FROM ORDER_MVTS, PRODUCT, ORDER
    WHERE ORDER.DHR_VALID >= TRUNC(TO_DATE('''||To_char(P_DTE_VAL,'DD/MM/YYYY')||''',''DD/MM/YYYY'')) '||
    AND ORDER.DHR_VALID < TRUNC(TO_DATE('''||To_char(P_DTE_VAL,'DD/MM/YYYY')||''',''DD/MM/YYYY'')) + 1 '||
    AND ORDER_MVTS.MVT_TYPE = 'DELIVERY'
    AND PRODUCT.CODE = ORDER_MVTS.PRODUCT_CODE
    AND ORDER_MVTS.ORDER_CODE = ORDER.CODE
    AND ORDER.CUSTOMER_CODE = :CUSTOMER
    AND PRODUCT.CODE = :CODE ';
    These two solutions work but Number 1 is bad in theory because it uses a Hint
    and Number 2 may be difficult to code.
    So my question is : Does someone knows another solution to force the use of index ORDER_DHR_VALID that can be simple and reliable.
    Thank you very much for support
    Edited by: remaï on Apr 1, 2009 4:08 PM

    What version of oracle you have? CBO work is different in 9i and 10g.
    Usually cost based optimizer do not want to use index for >< condition with binding variables because optimizer can not use statistic to determine selectivity, and by default selectivity of <> operators is low.
    (As I remember '>' selectivity by default is 5%, you have two conditions > and <, therefore resulting selectivity will be 0.05*0.05=0.0025 as two independent events, but selectivity of other conditions
    ORDER_MVTS.MVT_TYPE = 'DELIVERY' or ORDER.CUSTOMER_CODE = 'ADIDAS' looks much better for CBO)
    The best solution I see is do not use binding variables. Actually your query looks as searching query, which executes not so often, therefore you will not have perfomance win along of skipping execution plan creation.
    Edited by: JustasVred on Apr 1, 2009 10:10 AM

  • Udev not loading the right driver for usbtmc device

    I have a usb beam profiler  and I'm trying to get it to work on arch linux. It works using NI-VISA, so I should be able to communicate with it using usbtmc. However, when I plug it in, it does not show up in /dev.
    I think the problem is that udev is not loading the tmc interface driver when I plug it in.
    Here's a snippet of the output from lsusb -v:
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 4
    bInterfaceClass 255 Vendor Specific Class
    bInterfaceSubClass 0
    bInterfaceProtocol 0
    iInterface 0
    I believe that bInterface* should look something like:
    bInterfaceClass 254 Application Specific Interface
    bInterfaceSubClass 3 Test and Measurement
    bInterfaceProtocol 1 TMC
    iInterface 5 TMC488
    Is there a way to force udev to load the right interface? Or is the problem that I'm missing something from my kernel?

    Could you post the entire output of lsusb -v for the device?
    Bus 001 Device 013: ID 1313:8019 ThorLabs
    Couldn't open device, some information will be missing
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 2.00
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 64
    idVendor 0x1313 ThorLabs
    idProduct 0x8019
    bcdDevice 0.00
    iManufacturer 1
    iProduct 2
    iSerial 3
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 46
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0x80
    (Bus Powered)
    MaxPower 500mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 4
    bInterfaceClass 255 Vendor Specific Class
    bInterfaceSubClass 0
    bInterfaceProtocol 0
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x02 EP 2 OUT
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x04 EP 4 OUT
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x86 EP 6 IN
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x88 EP 8 IN
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 0
    What device node name are you expecting?
    Not sure, but probably /dev/usbtmc0
    Is there a chance that it is being instantiated as a HID device?  Does /dev/usbhid0 appear?
    Nope, don't have a /dev/usbhid0
    What does the journal say when the device has been attached?
    I'm not sure what you mean, but dmesg says:
    [ 6095.219400] usb 1-1.2: new high-speed USB device number 14 using ehci-pci
    and udevadm monitor says:
    KERNEL[6098.321484] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2 (usb)
    KERNEL[6098.321887] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0 (usb)
    UDEV [6098.324333] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2 (usb)
    UDEV [6098.325356] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0 (usb)

  • Sometimes fails to load the right codec (or chipset) for audio

    Sometimes fails to load the right sound codec (or chipset) for at boot, I think that it's same issue with alsa and OSS.
    At boot time (toshiba u300) alsa (or kernel maybe) fails to load sound.
    When it works this is loaded:
    kike ~ $ log -b | grep "snd_"
    jul 02 22:46:10 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
    kike ~ $ amixer info
    Card default 'Intel'/'HDA Intel at 0xf0800000 irq 48'
    Mixer name : 'Realtek ALC268'
    Components : 'HDA:10ec0268,10ec0268,00100003 HDA:11c11040,11790001,00100200'
    Controls : 34
    Simple ctrls : 14
    kike ~ $ cat /proc/asound/cards
    0 [Intel ]: HDA-Intel - HDA Intel
    HDA Intel at 0xf0800000 irq 45
    kike ~ $ cat /proc/asound/card0/codec#* | grep Codec
    Codec: Realtek ALC268
    Codec: LSI ID 1040
    kike ~ $ modinfo soundcore
    filename: /lib/modules/3.9.7-1-ARCH/kernel/sound/soundcore.ko.gz
    alias: char-major-14-*
    license: GPL
    author: Alan Cox
    description: Core sound module
    depends:
    intree: Y
    vermagic: 3.9.7-1-ARCH SMP preempt mod_unload modversions 686
    parm: preclaim_oss:int
    kike ~ $ alsactl init
    Found hardware: "HDA-Intel" "Realtek ALC268" "HDA:10ec0268,1179ff50,00100003 HDA:11c11040,11790001,00100200" "0x1179" "0xff50"
    Hardware is initialized using a generic method
    kike ~ $ lspci | grep Audio
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
    kike ~ $ lsmod | grep snd
    snd_hda_codec_realtek 26353 1
    snd_hda_intel 30415 0
    snd_hda_codec 125545 2 snd_hda_codec_realtek,snd_hda_intel
    snd_hwdep 4746 1 snd_hda_codec
    snd_pcm 62851 2 snd_hda_codec,snd_hda_intel
    snd_page_alloc 6038 2 snd_pcm,snd_hda_intel
    snd_timer 14846 1 snd_pcm
    snd 44486 6 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_pcm,snd_hda_codec,snd_hda_intel
    soundcore 4386 1 snd
    kike ~ $ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    kike ~ $ ls -l /dev/snd
    total 0
    drwxr-xr-x 2 root root 60 jul 8 14:45 by-path
    crw-rw----+ 1 root audio 116, 6 jul 8 14:45 controlC0
    crw-rw----+ 1 root audio 116, 5 jul 8 14:45 hwC0D0
    crw-rw----+ 1 root audio 116, 4 jul 8 14:45 hwC0D1
    crw-rw----+ 1 root audio 116, 3 jul 8 14:45 pcmC0D0c
    crw-rw----+ 1 root audio 116, 2 jul 8 14:45 pcmC0D0p
    crw-rw---- 1 root audio 116, 1 jul 8 14:45 seq
    crw-rw----+ 1 root audio 116, 33 jul 8 14:45 timer
    kike ~ $ speaker-test -Dplug:front -c2
    speaker-test 1.0.27.1
    Playback device is plug:front
    Stream parameters are 48000Hz, S16_LE, 2 channels
    Using 16 octaves of pink noise
    Rate set to 48000Hz (requested 48000Hz)
    Buffer size range from 64 to 1048576
    Period size range from 32 to 524288
    Using max buffer size 1048576
    Periods = 4
    was set period_size = 262144
    was set buffer_size = 1048576
    0 - Front Left
    1 - Front Right
    Time per period = 10,949396
    0 - Front Left
    1 - Front Right
    Time per period = 10,959696
    When sound doesn't works, only the codec «LSI ID 1040» is loaded, nor «Realtek ALC268» nor both:
    kike ~ $ log -b | grep "snd_"
    nov 21 07:47:20 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    kike ~ $ amixer info
    Card default 'Intel'/'HDA Intel at 0xf0800000 irq 45'
    Mixer name : 'LSI ID 1040'
    Components : 'HDA:11c11040,11790001,00100200'
    Controls : 0
    Simple ctrls : 0
    kike ~ $ cat /proc/asound/cards
    0 [Intel ]: HDA-Intel - HDA Intel
    HDA Intel at 0xf0800000 irq 45
    kike ~ $ cat /proc/asound/card0/codec#* | grep Codec
    Codec: LSI ID 1040
    kike ~ $ modinfo soundcore
    filename: /lib/modules/3.11.6-1-ARCH/kernel/sound/soundcore.ko.gz
    alias: char-major-14-*
    license: GPL
    author: Alan Cox
    description: Core sound module
    depends:
    intree: Y
    vermagic: 3.11.6-1-ARCH SMP preempt mod_unload modversions 686
    parm: preclaim_oss:int
    kike ~ $ alsactl init
    Found hardware: "HDA-Intel" "LSI ID 1040" "HDA:11c11040,11790001,00100200" "0x1179" "0xff50"
    Hardware is initialized using a generic method
    kike ~ $ lspci | grep Audio
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
    kike ~ $ lsmod | grep snd
    snd_hda_intel 30903 0
    snd_hda_codec 127562 1 snd_hda_intel
    snd_hwdep 4746 1 snd_hda_codec
    snd_pcm 63876 2 snd_hda_codec,snd_hda_intel
    snd_page_alloc 5942 2 snd_pcm,snd_hda_intel
    snd_timer 14942 1 snd_pcm
    snd 44566 5 snd_hwdep,snd_timer,snd_pcm,snd_hda_codec,snd_hda_intel
    soundcore 4386 1 snd
    kike ~ $ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    kike ~ $ ls -l /dev/snd
    total 0
    drwxr-xr-x 2 root root 60 nov 21 07:47 by-path
    crw-rw----+ 1 root audio 116, 3 nov 21 07:47 controlC0
    crw-rw----+ 1 root audio 116, 2 nov 21 07:47 hwC0D1
    crw-rw---- 1 root audio 116, 1 nov 21 07:47 seq
    crw-rw----+ 1 root audio 116, 33 nov 21 07:47 timer
    kike ~ $ speaker-test
    speaker-test 1.0.27.2
    Playback device is default
    Stream parameters are 48000Hz, S16_LE, 1 channels
    Using 16 octaves of pink noise
    Playback open error: -2,No existe el fichero o el directorio
    kike ~ $
    I've followed this topics without luck.
    https://wiki.archlinux.org/index.php/Al … sound_card
    https://mailman.archlinux.org/pipermail … 05092.html
    https://www.kernel.org/doc/Documentatio … Models.txt
    First I worked around alsa sound state, it doesn't work, then I tried to point my laptop model in «/etc/modprobe.d/alsa-base.conf» file:
    options snd-hda-intel model=toshiba
    options snd-hda-intel index=0
    options bt87x index=-2
    options cx88_alsa index=-2
    options saa7134-alsa index=-2
    options snd-atiixp-modem index=-2
    options snd-intel8x0m index=-2
    options snd-via82xx-modem index=-2
    options snd-usb-audio index=-2
    options snd-usb-caiaq index=-2
    options snd-usb-ua101 index=-2
    options snd-usb-us122l index=-2
    options snd-usb-usx2y index=-2
    options snd-pcsp index=-2
    options snd-usb-audio index=-2
    And last I've tried to load Realtek modules in «/etc/modules-load.d/alsa.conf» file:
    snd
    snd_hda_intel
    snd_hda_codec
    snd_pcm
    snd_page_alloc
    snd_timer
    snd_hwdep
    snd_hda_codec_realtek
    And here is that commands shows this sesion:
    kike ~ $ log -b | grep "snd_"
    dic 22 08:23:20 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    dic 22 08:23:21 dokan-laptop systemd-modules-load[146]: Inserted module 'snd_hda_intel'
    dic 22 08:23:21 dokan-laptop systemd-modules-load[146]: Inserted module 'snd_hda_codec_realtek'
    dic 22 08:23:26 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:26 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:26 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:26 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:26 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:26 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:26 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:34 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:35 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:35 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:35 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:35 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:35 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:35 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:36 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:36 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:36 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:36 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:36 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:36 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:36 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:41 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:41 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:41 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:41 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:41 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:41 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:41 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:46 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:46 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:46 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:46 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:46 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:46 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:46 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:51 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:51 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:51 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:51 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:51 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:51 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:51 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:56 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:56 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:56 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:56 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:56 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:56 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:23:56 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:01 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:01 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:01 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:01 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:01 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:02 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:02 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:06 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:06 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:06 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:06 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:06 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:06 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:06 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:11 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:11 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:11 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:11 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:11 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:11 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    dic 22 08:24:11 dokan-laptop kernel: snd_hda_intel 0000:00:1b.0: no hotplug settings from platform
    kike ~ $ amixer info
    Card default 'Intel'/'HDA Intel at 0xf0800000 irq 45'
    Mixer name : 'LSI ID 1040'
    Components : 'HDA:11c11040,11790001,00100200'
    Controls : 0
    Simple ctrls : 0
    kike ~ $ cat /proc/asound/cards
    0 [Intel ]: HDA-Intel - HDA Intel
    HDA Intel at 0xf0800000 irq 45
    kike ~ $ cat /proc/asound/card0/codec#* | grep Codec
    Codec: LSI ID 1040
    kike ~ $ modinfo soundcore
    filename: /lib/modules/3.12.5-1-ARCH/kernel/sound/soundcore.ko.gz
    alias: char-major-14-*
    license: GPL
    author: Alan Cox
    description: Core sound module
    depends:
    intree: Y
    vermagic: 3.12.5-1-ARCH SMP preempt mod_unload modversions 686
    parm: preclaim_oss:int
    kike ~ $ alsactl init
    Found hardware: "HDA-Intel" "LSI ID 1040" "HDA:11c11040,11790001,00100200" "0x1179" "0xff50"
    Hardware is initialized using a generic method
    kike ~ $ lspci | grep Audio
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
    kike ~ $ lsmod | grep snd
    snd_hda_codec_realtek 35534 0
    snd_hda_intel 31255 0
    snd_hda_codec 128858 2 snd_hda_codec_realtek,snd_hda_intel
    snd_hwdep 4750 1 snd_hda_codec
    snd_pcm 63880 2 snd_hda_codec,snd_hda_intel
    snd_page_alloc 5978 2 snd_pcm,snd_hda_intel
    snd_timer 14946 1 snd_pcm
    snd 44566 6 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_pcm,snd_hda_codec,snd_hda_intel
    soundcore 4386 1 snd
    kike ~ $ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    kike ~ $ ls -l /dev/snd
    total 0
    drwxr-xr-x 2 root root 60 dic 22 08:23 by-path
    crw-rw----+ 1 root audio 116, 3 dic 22 08:23 controlC0
    crw-rw----+ 1 root audio 116, 2 dic 22 08:23 hwC0D1
    crw-rw---- 1 root audio 116, 1 dic 22 08:23 seq
    crw-rw----+ 1 root audio 116, 33 dic 22 08:23 timer
    kike ~ $ speaker-test -Dplug:front -c2
    speaker-test 1.0.27.2
    Playback device is plug:front
    Stream parameters are 48000Hz, S16_LE, 2 channels
    Using 16 octaves of pink noise
    Playback open error: -2,No existe el fichero o el directorio
    My next step is go into kernel but I think it's better to ask here first.
    I have to say that before Arch it had installed Ubuntu 10.04 with OSS (problems with keyboard sound keys with alsa), lately before change to Arch I must to restart sound system before it works frequently with this procedure; «soundoff», then «soundon» absolutly freezes the laptop so I had to turn off it and turn on again, then «rm /usr/lib/oss/starting», and last «soundon», then it sometimes works.
    Now my only way to have sound is to restart the system time and time again until it works.
    Thanks for your advices.
    Last edited by Dokan (2013-12-22 11:49:08)

    Maybe two kernel modules that try to control the same piece of hardware, but how can I know what modules are?
    Blacklisting [https://wiki.archlinux.org/index.php/Ke … acklisting]
    Blacklisting, in the context of kernel modules, is a mechanism to prevent the kernel module from loading. This could be useful if, for example, the associated hardware is not needed, or if loading that module causes problems: for instance there may be two kernel modules that try to control the same piece of hardware, and loading them together would result in a conflict.
    Some modules are loaded as part of the initramfs. mkinitcpio -M will print out all autodetected modules: to prevent the initramfs from loading some of those modules, blacklist them in /etc/modprobe.d/modprobe.conf. Running mkinitcpio -v will list all modules pulled in by the various hooks (e.g. filesystem hook, SCSI hook, etc.). Remember to add that .conf file to the FILES section in /etc/mkinitcpio.conf (if you have not done so already) and rebuild the initramfs once you have blacklisted the modules, and to reboot afterwards.
    # mkinitcpio -M
    ==> Modules autodetected
    ac
    acpi_cpufreq
    ahci
    ata_generic
    ata_piix
    battery
    btusb
    button
    coretemp
    ehci_pci
    evdev
    ext4
    firewire_ohci
    hid_generic
    i2c_i801
    i915
    intel_agp
    iTCO_wdt
    iwl4965
    joydev
    kvm_intel
    lpc_ich
    microcode
    pata_acpi
    pcspkr
    processor
    psmouse
    r592
    r8169
    sdhci_pci
    sd_mod
    serio_raw
    shpchp
    snd_hda_intel
    sr_mod
    thermal
    toshiba_acpi
    toshiba_bluetooth
    uhci_hcd
    usbcore
    usbhid
    uvcvideo
    video
    wmi
    [root@dokan-laptop ~]# mkinitcpio -v
    ==> Starting dry run: 3.12.5-1-ARCH
    -> Running build hook: [/usr/lib/initcpio/install/base]
    adding file: /bin/busybox
    adding symlink: /usr/lib/libc.so.6 -> libc-2.18.so
    adding file: /usr/lib/libc-2.18.so
    adding symlink: /lib/ld-linux.so.2 -> ld-2.18.so
    adding file: /usr/lib/ld-2.18.so
    adding symlink: /usr/bin/[ -> busybox
    adding symlink: /usr/bin/[[ -> busybox
    adding symlink: /usr/bin/ash -> busybox
    adding symlink: /usr/bin/awk -> busybox
    adding symlink: /usr/bin/basename -> busybox
    adding symlink: /usr/bin/cat -> busybox
    adding symlink: /usr/bin/chgrp -> busybox
    adding symlink: /usr/bin/chmod -> busybox
    adding symlink: /usr/bin/chown -> busybox
    adding symlink: /usr/bin/chroot -> busybox
    adding symlink: /usr/bin/clear -> busybox
    adding symlink: /usr/bin/cp -> busybox
    adding symlink: /usr/bin/cttyhack -> busybox
    adding symlink: /usr/bin/cut -> busybox
    adding symlink: /usr/bin/dd -> busybox
    adding symlink: /usr/bin/df -> busybox
    adding symlink: /usr/bin/dirname -> busybox
    adding symlink: /usr/bin/dmesg -> busybox
    adding symlink: /usr/bin/du -> busybox
    adding symlink: /usr/bin/echo -> busybox
    adding symlink: /usr/bin/egrep -> busybox
    adding symlink: /usr/bin/env -> busybox
    adding symlink: /usr/bin/expr -> busybox
    adding symlink: /usr/bin/false -> busybox
    adding symlink: /usr/bin/free -> busybox
    adding symlink: /usr/bin/getopt -> busybox
    adding symlink: /usr/bin/grep -> busybox
    adding symlink: /usr/bin/halt -> busybox
    adding symlink: /usr/bin/head -> busybox
    adding symlink: /usr/bin/hexdump -> busybox
    adding symlink: /usr/bin/ifconfig -> busybox
    adding symlink: /usr/bin/init -> busybox
    adding symlink: /usr/bin/install -> busybox
    adding symlink: /usr/bin/ip -> busybox
    adding symlink: /usr/bin/ipaddr -> busybox
    adding symlink: /usr/bin/iplink -> busybox
    adding symlink: /usr/bin/iproute -> busybox
    adding symlink: /usr/bin/iprule -> busybox
    adding symlink: /usr/bin/iptunnel -> busybox
    adding symlink: /usr/bin/kbd_mode -> busybox
    adding symlink: /usr/bin/kill -> busybox
    adding symlink: /usr/bin/killall -> busybox
    adding symlink: /usr/bin/less -> busybox
    adding symlink: /usr/bin/ln -> busybox
    adding symlink: /usr/bin/loadfont -> busybox
    adding symlink: /usr/bin/loadkmap -> busybox
    adding symlink: /usr/bin/losetup -> busybox
    adding symlink: /usr/bin/ls -> busybox
    adding symlink: /usr/bin/md5sum -> busybox
    adding symlink: /usr/bin/mkdir -> busybox
    adding symlink: /usr/bin/mkfifo -> busybox
    adding symlink: /usr/bin/mknod -> busybox
    adding symlink: /usr/bin/mktemp -> busybox
    adding symlink: /usr/bin/mountpoint -> busybox
    adding symlink: /usr/bin/mv -> busybox
    adding symlink: /usr/bin/nc -> busybox
    adding symlink: /usr/bin/netstat -> busybox
    adding symlink: /usr/bin/nslookup -> busybox
    adding symlink: /usr/bin/openvt -> busybox
    adding symlink: /usr/bin/pgrep -> busybox
    adding symlink: /usr/bin/pidof -> busybox
    adding symlink: /usr/bin/ping -> busybox
    adding symlink: /usr/bin/ping6 -> busybox
    adding symlink: /usr/bin/poweroff -> busybox
    adding symlink: /usr/bin/printf -> busybox
    adding symlink: /usr/bin/ps -> busybox
    adding symlink: /usr/bin/pwd -> busybox
    adding symlink: /usr/bin/readlink -> busybox
    adding symlink: /usr/bin/reboot -> busybox
    adding symlink: /usr/bin/rm -> busybox
    adding symlink: /usr/bin/rmdir -> busybox
    adding symlink: /usr/bin/route -> busybox
    adding symlink: /usr/bin/sed -> busybox
    adding symlink: /usr/bin/seq -> busybox
    adding symlink: /usr/bin/setfont -> busybox
    adding symlink: /usr/bin/sh -> busybox
    adding symlink: /usr/bin/sha1sum -> busybox
    adding symlink: /usr/bin/sha256sum -> busybox
    adding symlink: /usr/bin/sha512sum -> busybox
    adding symlink: /usr/bin/sleep -> busybox
    adding symlink: /usr/bin/sort -> busybox
    adding symlink: /usr/bin/stat -> busybox
    adding symlink: /usr/bin/strings -> busybox
    adding symlink: /usr/bin/sync -> busybox
    adding symlink: /usr/bin/tac -> busybox
    adding symlink: /usr/bin/tail -> busybox
    adding symlink: /usr/bin/telnet -> busybox
    adding symlink: /usr/bin/test -> busybox
    adding symlink: /usr/bin/tftp -> busybox
    adding symlink: /usr/bin/touch -> busybox
    adding symlink: /usr/bin/true -> busybox
    adding symlink: /usr/bin/umount -> busybox
    adding symlink: /usr/bin/uname -> busybox
    adding symlink: /usr/bin/uniq -> busybox
    adding symlink: /usr/bin/uptime -> busybox
    adding symlink: /usr/bin/vi -> busybox
    adding symlink: /usr/bin/wc -> busybox
    adding symlink: /usr/bin/wget -> busybox
    adding symlink: /usr/bin/yes -> busybox
    adding file: /usr/sbin/kmod
    adding symlink: /usr/lib/libz.so.1 -> libz.so.1.2.8
    adding file: /usr/lib/libz.so.1.2.8
    adding symlink: /usr/bin/depmod -> kmod
    adding symlink: /usr/bin/insmod -> kmod
    adding symlink: /usr/bin/rmmod -> kmod
    adding symlink: /usr/bin/lsmod -> kmod
    adding symlink: /usr/bin/modprobe -> kmod
    adding symlink: /usr/bin/modinfo -> kmod
    adding file: /usr/sbin/blkid
    adding symlink: /usr/lib/libblkid.so.1 -> libblkid.so.1.1.0
    adding file: /usr/lib/libblkid.so.1.1.0
    adding symlink: /usr/lib/libuuid.so.1 -> libuuid.so.1.3.0
    adding file: /usr/lib/libuuid.so.1.3.0
    adding file: /usr/sbin/mount
    adding symlink: /usr/lib/libmount.so.1 -> libmount.so.1.1.0
    adding file: /usr/lib/libmount.so.1.1.0
    adding file: /usr/sbin/switch_root
    adding file: /init_functions
    adding file: /init
    adding file: /usr/lib/modprobe.d/usb-load-ehci-first.conf
    -> Running build hook: [/usr/lib/initcpio/install/udev]
    adding file: /etc/udev/udev.conf
    adding file: /usr/lib/systemd/systemd-udevd
    adding symlink: /usr/lib/librt.so.1 -> librt-2.18.so
    adding file: /usr/lib/librt-2.18.so
    adding symlink: /usr/lib/libkmod.so.2 -> libkmod.so.2.2.5
    adding file: /usr/lib/libkmod.so.2.2.5
    adding symlink: /usr/lib/libacl.so.1 -> libacl.so.1.1.0
    adding file: /usr/lib/libacl.so.1.1.0
    adding symlink: /usr/lib/libpthread.so.0 -> libpthread-2.18.so
    adding file: /usr/lib/libpthread-2.18.so
    adding symlink: /usr/lib/libattr.so.1 -> libattr.so.1.1.0
    adding file: /usr/lib/libattr.so.1.1.0
    adding file: /usr/bin/udevadm
    adding file: /usr/bin/systemd-tmpfiles
    adding symlink: /usr/lib/libcap.so.2 -> libcap.so.2.22
    adding file: /usr/lib/libcap.so.2.22
    adding file: /usr/lib/udev/rules.d/50-udev-default.rules
    adding file: /usr/lib/udev/rules.d/60-persistent-storage.rules
    adding file: /usr/lib/udev/rules.d/64-btrfs.rules
    adding file: /usr/lib/udev/rules.d/80-drivers.rules
    adding file: /usr/lib/udev/ata_id
    adding file: /usr/lib/udev/scsi_id
    adding file: /hooks/udev
    -> Running build hook: [/usr/lib/initcpio/install/autodetect]
    caching 44 modules
    -> Running build hook: [/usr/lib/initcpio/install/modconf]
    adding dir: /etc/modprobe.d
    adding file: /etc/modprobe.d/alsa-base.conf
    overwriting file: /usr/lib/modprobe.d/usb-load-ehci-first.conf
    -> Running build hook: [/usr/lib/initcpio/install/block]
    adding module: scsi_mod
    adding module: sd_mod
    adding module: cdrom
    adding module: sr_mod
    adding module: libata
    adding module: pata_acpi
    adding module: ata_generic
    adding module: libahci
    adding module: ahci
    adding module: ata_piix
    adding module: usb-common
    adding module: usbcore
    adding module: ehci-hcd
    adding module: ehci_pci
    adding module: uhci_hcd
    adding module: crc-itu-t
    adding module: firewire-core
    adding module: firewire_ohci
    adding module: mmc_core
    adding module: sdhci
    adding module: sdhci_pci
    adding module: firewire-sbp2
    adding module: usb_storage
    adding module: mmc_block
    -> Running build hook: [/usr/lib/initcpio/install/lvm2]
    adding module: dm-mod
    adding module: dm-snapshot
    adding module: dm-log
    adding module: dm-region-hash
    adding module: dm-mirror
    adding file: /usr/bin/lvm
    adding symlink: /usr/lib/libudev.so.1 -> libudev.so.1.4.0
    adding file: /usr/lib/libudev.so.1.4.0
    adding symlink: /usr/lib/libdl.so.2 -> libdl-2.18.so
    adding file: /usr/lib/libdl-2.18.so
    adding file: /usr/lib/libdevmapper-event.so.1.02
    adding file: /usr/lib/libdevmapper.so.1.02
    adding symlink: /usr/lib/libreadline.so.6 -> libreadline.so.6.2
    adding file: /usr/lib/libreadline.so.6.2
    adding symlink: /usr/lib/libncursesw.so.5 -> libncursesw.so.5.9
    adding file: /usr/lib/libncursesw.so.5.9
    adding file: /usr/bin/lvmetad
    adding file: /usr/bin/dmsetup
    adding file: /usr/lib/udev/rules.d/10-dm.rules
    adding file: /usr/lib/udev/rules.d/13-dm-disk.rules
    adding file: /usr/lib/udev/rules.d/95-dm-notify.rules
    adding file: /usr/lib/udev/rules.d/11-dm-lvm.rules
    adding file: /usr/lib/udev/rules.d/69-dm-lvm-metad.rules
    adding file: /usr/lib/udev/rules.d/11-dm-initramfs.rules
    adding file: /etc/lvm/lvm.conf
    adding file: /hooks/lvm2
    -> Running build hook: [/usr/lib/initcpio/install/filesystems]
    adding module: mbcache
    adding module: jbd2
    adding module: crc16
    adding module: ext4
    -> Running build hook: [/usr/lib/initcpio/install/keyboard]
    adding module: hid
    adding module: hid_generic
    adding module: usbhid
    -> Running build hook: [/usr/lib/initcpio/install/fsck]
    adding file: /usr/sbin/fsck.ext4
    adding symlink: /usr/lib/libext2fs.so.2 -> libext2fs.so.2.4
    adding file: /usr/lib/libext2fs.so.2.4
    adding symlink: /usr/lib/libcom_err.so.2 -> libcom_err.so.2.1
    adding file: /usr/lib/libcom_err.so.2.1
    adding symlink: /usr/lib/libe2p.so.2 -> libe2p.so.2.3
    adding file: /usr/lib/libe2p.so.2.3
    adding symlink: /usr/bin/fsck.ext2 -> fsck.ext4
    adding symlink: /usr/bin/fsck.ext3 -> fsck.ext4
    adding file: /usr/sbin/fsck
    ==> Generating module dependencies
    ==> Dry run complete, use -g IMAGE to generate a real image
    [root@dokan-laptop ~]# nano /etc/modprobe.d/alsa-base.conf
    options snd-hda-intel model=toshiba
    options snd-hda-intel index=0
    options bt87x index=-2
    options cx88_alsa index=-2
    options saa7134-alsa index=-2
    options snd-atiixp-modem index=-2
    options snd-intel8x0m index=-2
    options snd-via82xx-modem index=-2
    options snd-usb-audio index=-2
    options snd-usb-caiaq index=-2
    options snd-usb-ua101 index=-2
    options snd-usb-us122l index=-2
    options snd-usb-usx2y index=-2
    options snd-pcsp index=-2
    options snd-usb-audio index=-2

  • Hello there - I am sharing an iPhoto library across two accounts on the same computer - it works fine EXCEPT for Quicktime movies - they play on one account and claim I don't have the rights on the other - all permissions are on and ok?

    Hello there - I am sharing an iPhoto library across two accounts on the same computer - it works fine EXCEPT for Quicktime movies - they play on one account and claim I don't have the rights on the other - all permissions are on and ok?

    It should be in the Users/ Shared folder.
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Note the option to check and repair Library Permissions
    Regards
    TD

  • Ever since i plugged my iphone into the computer, all of my music has been messed up. The songs don't have the right album cover i guess they all just got mixed up somehow. i dont know but its annoying and im not sure how to fix it.

    Ever since i plugged my iphone into the computer, all of my music has been messed up. The songs don't have the right album cover i guess they all just got mixed up somehow. i dont know but its annoying and im not sure how to fix it.

    If not this:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar
    Then
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • My computer broke, so I had to change the hardisk(?). Now iTunes dosen't work anymore. It says that the program is either lockes, on a locked unit or I don't have the right to open the library? Help please? :)

    My computer broke, so I had to change the hardrive-hardisk(?). Now iTunes dosen't work anymore. It says that the program is either locked, is on a locked unit or I don't have the right to open the library? Help please?

    Sometimes a restart can fix this issue, but sometimes you have to fix the iTunes Library.itl file.
    Try quitting iTunes, renaming the itunes file "iTunes Library.itl" to "iTunes Library Old.itl"
    then open itunes again
    This should generate a new library file.
    From this point you can try two different avenues.
    1. Re-add everything to your library by going to the iTunes file menu, and selecting "add to library"
    2. You can try deleting the iTunes Library.itl you created, changing the name of the old file back to iTunes Library.itl
    I hope this helps. I did something like this a while back and it worked for me.

  • Sites w/ .pdf or .ashx documents as the full page or as an insert in the page don't load the .pdf or .ashx documents - I get an Problem Report window that says "Firefox Plugin Process quit unexpectedly"

    Sites w/ .pdf or .ashx documents as the full page or as an insert in the page don't load the .pdf or .ashx documents - I get an Problem Report window that says "Firefox Plugin Process quit unexpectedly" and sends the error to Apple so I have had to revert to Firefox 3 getting rid of 4. Anybody have any thoughts?? (I'm runnng OSX 10.6.7)
    pdf was at
    <http://www.brigham.com/MSDS/Dust%20Mop-dust%20cloth%20treatment.pdf>
    ashx was my utility bill on
    <www.pse.com>

    OK, I think I have this solved. After reading my post over, I decided to rethink the problem. First thing I did was download Chrome and I tried using that and IE again and surprise! I was having the same problem on those browsers as well. So now we know it wasn't Firefox. I then figured maybe a slow computer meant a virus, so I ran scans. I've had both Avast and IOBit for months now and I've never had a problem with either of them before. Then I downloaded Malwarebytes and ran a third scan. They all picked some stuff up, but nothing serious. Then I tried disabling all the antivirus stuff and that didn't solve anything. But then I decided to keep Malwarebytes and I uninstalled IOBit Security and whammo - problem solved.
    I have no idea why out of the blue IOBit would be causing a problem like this so if someone knows, please let me in on the secret. Additionally, IE was working fairly well last night but not this morning. I also don't know why removing IOBit would take care of the nsAppShell issue, because supposedly, that's related to Firefox plug ins. And one more thing...when Comcast hooked my neighbor up to cable, they did it by putting a splitter on my line. They were messing about with the lines yesterday before I got on my computer last night trying to decide how to rerun them and today they did that, taking the splitter off my line and giving my neighbor his own line. That was finished about 30 minutes before I uninstalled IOBit. So....who knows?
    But I ain't about to look a gift horse in the mouth. I have my Firefox back and I am so sorry for bad mouthing you last night - I love you, Firefox!

  • My BB 8530 don´t load the OS

    I just want to know if anybody can help me with this, the bb don't load the OS so I need to know if I'm going to be abble to wipe out the phone in a diffrent way?
    Thanks.

    Hi and Welcome to the Forums!
    With your description, it's a bit hard to tell what happens. Can you provide a more complete description? Please include how long you wait.
    If you do decide to wipe and reload, there are a few methods:
    http://supportforums.blackberry.com/t5/BlackBerry-​Device-Software/How-To-Reload-Your-Operating-Syste​...
    http://www.bbsak.org/
    http://forums.crackberry.com/f3/how-wipe-jl_cmder-​53502/
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • [Solved] Problem with Xorg, unable to load the right keymap

    Hi, people,
    I recently installed arch on a desktop, but there is a problem installing X: for whatever reason, Xorg seems unable to load the correct keymap (fr-latin9) and instead, loads the default one.
    I can see what seems to be the problem in the Xorg logs, but I actually absolutely don't know how to solve it. Here my /var/log/Xorg.0.log
    root@kgentoo keikoz # cat /mnt/tmp/var/log/Xorg.0.log
    [ 9.900]
    X.Org X Server 1.12.4
    Release Date: 2012-08-27
    [ 9.900] X Protocol Version 11, Revision 0
    [ 9.900] Build Operating System: Linux 3.4.8-1-ARCH x86_64
    [ 9.900] Current Operating System: Linux kdesktop 3.4.9-1-ARCH #1 SMP PREEMPT Wed Aug 15 18:59:31 CEST 2012 x86_64
    [ 9.901] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=7d2d3ed4-6903-4845-b70d-9462f52f4329 ro quiet
    [ 9.901] Build Date: 27 August 2012 08:04:39AM
    [ 9.901]
    [ 9.901] Current version of pixman: 0.26.2
    [ 9.901] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 9.901] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 9.901] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Sep 26 16:32:35 2012
    [ 9.950] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 9.967] (==) No Layout section. Using the first Screen section.
    [ 9.967] (==) No screen section available. Using defaults.
    [ 9.967] (**) |-->Screen "Default Screen Section" (0)
    [ 9.967] (**) | |-->Monitor "<default monitor>"
    [ 9.969] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 9.969] (==) Automatically adding devices
    [ 9.969] (==) Automatically enabling devices
    [ 10.002] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 10.002] Entry deleted from font path.
    [ 10.006] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 10.007] Entry deleted from font path.
    [ 10.007] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 10.007] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 10.007] Entry deleted from font path.
    [ 10.007] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 10.007] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 10.007] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 10.007] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 10.007] (II) Loader magic: 0x7c8b00
    [ 10.007] (II) Module ABI versions:
    [ 10.007] X.Org ANSI C Emulation: 0.4
    [ 10.007] X.Org Video Driver: 12.1
    [ 10.007] X.Org XInput driver : 16.0
    [ 10.007] X.Org Server Extension : 6.0
    [ 10.008] (--) PCI:*(0:3:0:0) 10de:0141:107d:200d rev 162, Mem @ 0xcc000000/67108864, 0xd0000000/268435456, 0xcb000000/16777216, BIOS @ 0x????????/131072
    [ 10.008] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 10.008] (II) LoadModule: "extmod"
    [ 10.018] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 10.033] (II) Module extmod: vendor="X.Org Foundation"
    [ 10.033] compiled for 1.12.4, module version = 1.0.0
    [ 10.033] Module class: X.Org Server Extension
    [ 10.033] ABI class: X.Org Server Extension, version 6.0
    [ 10.033] (II) Loading extension MIT-SCREEN-SAVER
    [ 10.033] (II) Loading extension XFree86-VidModeExtension
    [ 10.033] (II) Loading extension XFree86-DGA
    [ 10.033] (II) Loading extension DPMS
    [ 10.033] (II) Loading extension XVideo
    [ 10.033] (II) Loading extension XVideo-MotionCompensation
    [ 10.033] (II) Loading extension X-Resource
    [ 10.033] (II) LoadModule: "dbe"
    [ 10.033] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 10.034] (II) Module dbe: vendor="X.Org Foundation"
    [ 10.034] compiled for 1.12.4, module version = 1.0.0
    [ 10.034] Module class: X.Org Server Extension
    [ 10.034] ABI class: X.Org Server Extension, version 6.0
    [ 10.034] (II) Loading extension DOUBLE-BUFFER
    [ 10.034] (II) LoadModule: "glx"
    [ 10.034] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 11.016] (II) Module glx: vendor="NVIDIA Corporation"
    [ 11.016] compiled for 4.0.2, module version = 1.0.0
    [ 11.016] Module class: X.Org Server Extension
    [ 11.016] (II) NVIDIA GLX Module 304.37 Wed Aug 8 20:16:03 PDT 2012
    [ 11.016] (II) Loading extension GLX
    [ 11.016] (II) LoadModule: "record"
    [ 11.016] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 11.026] (II) Module record: vendor="X.Org Foundation"
    [ 11.026] compiled for 1.12.4, module version = 1.13.0
    [ 11.026] Module class: X.Org Server Extension
    [ 11.026] ABI class: X.Org Server Extension, version 6.0
    [ 11.026] (II) Loading extension RECORD
    [ 11.026] (II) LoadModule: "dri"
    [ 11.026] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 11.049] (II) Module dri: vendor="X.Org Foundation"
    [ 11.049] compiled for 1.12.4, module version = 1.0.0
    [ 11.049] ABI class: X.Org Server Extension, version 6.0
    [ 11.049] (II) Loading extension XFree86-DRI
    [ 11.049] (II) LoadModule: "dri2"
    [ 11.050] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 11.050] (II) Module dri2: vendor="X.Org Foundation"
    [ 11.050] compiled for 1.12.4, module version = 1.2.0
    [ 11.050] ABI class: X.Org Server Extension, version 6.0
    [ 11.050] (II) Loading extension DRI2
    [ 11.051] (==) Matched nouveau as autoconfigured driver 0
    [ 11.051] (==) Matched nvidia as autoconfigured driver 1
    [ 11.051] (==) Matched nv as autoconfigured driver 2
    [ 11.051] (==) Matched vesa as autoconfigured driver 3
    [ 11.051] (==) Matched fbdev as autoconfigured driver 4
    [ 11.051] (==) Assigned the driver to the xf86ConfigLayout
    [ 11.051] (II) LoadModule: "nouveau"
    [ 11.059] (WW) Warning, couldn't open module nouveau
    [ 11.059] (II) UnloadModule: "nouveau"
    [ 11.059] (II) Unloading nouveau
    [ 11.059] (EE) Failed to load module "nouveau" (module does not exist, 0)
    [ 11.059] (II) LoadModule: "nvidia"
    [ 11.060] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 11.274] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 11.274] compiled for 4.0.2, module version = 1.0.0
    [ 11.274] Module class: X.Org Video Driver
    [ 11.300] (II) LoadModule: "nv"
    [ 11.301] (WW) Warning, couldn't open module nv
    [ 11.301] (II) UnloadModule: "nv"
    [ 11.301] (II) Unloading nv
    [ 11.301] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 11.301] (II) LoadModule: "vesa"
    [ 11.301] (WW) Warning, couldn't open module vesa
    [ 11.301] (II) UnloadModule: "vesa"
    [ 11.301] (II) Unloading vesa
    [ 11.301] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 11.301] (II) LoadModule: "fbdev"
    [ 11.302] (WW) Warning, couldn't open module fbdev
    [ 11.302] (II) UnloadModule: "fbdev"
    [ 11.302] (II) Unloading fbdev
    [ 11.302] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 11.302] (II) NVIDIA dlloader X Driver 304.37 Wed Aug 8 19:54:47 PDT 2012
    [ 11.302] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 11.303] (++) using VT number 7
    [ 11.317] (II) Loading sub module "fb"
    [ 11.317] (II) LoadModule: "fb"
    [ 11.317] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 11.330] (II) Module fb: vendor="X.Org Foundation"
    [ 11.330] compiled for 1.12.4, module version = 1.0.0
    [ 11.330] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.330] (II) Loading sub module "wfb"
    [ 11.330] (II) LoadModule: "wfb"
    [ 11.331] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 11.347] (II) Module wfb: vendor="X.Org Foundation"
    [ 11.347] compiled for 1.12.4, module version = 1.0.0
    [ 11.347] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.347] (II) Loading sub module "ramdac"
    [ 11.347] (II) LoadModule: "ramdac"
    [ 11.347] (II) Module "ramdac" already built-in
    [ 11.366] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 11.366] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 11.366] (==) NVIDIA(0): RGB weight 888
    [ 11.366] (==) NVIDIA(0): Default visual is TrueColor
    [ 11.366] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 11.367] (**) NVIDIA(0): Enabling 2D acceleration
    [ 13.308] (II) NVIDIA(GPU-0): Display (BenQ FP93GX (DFP-0)) does not support NVIDIA 3D
    [ 13.308] (II) NVIDIA(GPU-0): Vision stereo.
    [ 13.311] (II) NVIDIA(0): NVIDIA GPU GeForce 6600 (NV43) at PCI:3:0:0 (GPU-0)
    [ 13.312] (--) NVIDIA(0): Memory: 262144 kBytes
    [ 13.312] (--) NVIDIA(0): VideoBIOS: 05.43.02.64.68
    [ 13.312] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 13.312] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 13.312] (--) NVIDIA(0): Valid display device(s) on GeForce 6600 at PCI:3:0:0
    [ 13.312] (--) NVIDIA(0): CRT-0
    [ 13.312] (--) NVIDIA(0): CRT-1
    [ 13.312] (--) NVIDIA(0): TV-0
    [ 13.312] (--) NVIDIA(0): BenQ FP93GX (DFP-0) (connected)
    [ 13.312] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): CRT-1: 400.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): TV-0: 400.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): TV encoder: (null)
    [ 13.312] (--) NVIDIA(0): BenQ FP93GX (DFP-0): 155.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): BenQ FP93GX (DFP-0): Internal Single Link TMDS
    [ 13.312] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 13.312] (**) NVIDIA(0): device BenQ FP93GX (DFP-0) (Using EDID frequencies has
    [ 13.312] (**) NVIDIA(0): been enabled on all display devices.)
    [ 13.312] (==) NVIDIA(0):
    [ 13.312] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 13.312] (==) NVIDIA(0): will be used as the requested mode.
    [ 13.312] (==) NVIDIA(0):
    [ 13.312] (II) NVIDIA(0): Validated MetaModes:
    [ 13.313] (II) NVIDIA(0): "DFP-0:nvidia-auto-select"
    [ 13.313] (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    [ 13.314] (WW) NVIDIA(0): Unable to support custom viewPortOut 1280 x 720 +0 +152
    [ 13.328] (--) NVIDIA(0): DPI set to (85, 86); computed from "UseEdidDpi" X config
    [ 13.328] (--) NVIDIA(0): option
    [ 13.328] (--) Depth 24 pixmap format is 32 bpp
    [ 13.338] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 13.338] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 13.338] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 13.338] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 13.338] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 13.338] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 13.338] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 13.338] (II) NVIDIA(0): Config Options in the README.
    [ 13.338] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
    [ 13.486] (II) Loading extension NV-GLX
    [ 13.541] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 13.541] (==) NVIDIA(0): Backing store disabled
    [ 13.541] (==) NVIDIA(0): Silken mouse enabled
    [ 13.541] (==) NVIDIA(0): DPMS enabled
    [ 13.542] (II) Loading extension NV-CONTROL
    [ 13.542] (II) Loading extension XINERAMA
    [ 13.542] (II) Loading sub module "dri2"
    [ 13.542] (II) LoadModule: "dri2"
    [ 13.542] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 13.542] (II) Module dri2: vendor="X.Org Foundation"
    [ 13.542] compiled for 1.12.4, module version = 1.2.0
    [ 13.542] ABI class: X.Org Server Extension, version 6.0
    [ 13.542] (II) NVIDIA(0): [DRI2] Setup complete
    [ 13.542] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 13.543] (--) RandR disabled
    [ 13.543] (II) Initializing built-in extension Generic Event Extension
    [ 13.543] (II) Initializing built-in extension SHAPE
    [ 13.543] (II) Initializing built-in extension MIT-SHM
    [ 13.543] (II) Initializing built-in extension XInputExtension
    [ 13.543] (II) Initializing built-in extension XTEST
    [ 13.543] (II) Initializing built-in extension BIG-REQUESTS
    [ 13.543] (II) Initializing built-in extension SYNC
    [ 13.543] (II) Initializing built-in extension XKEYBOARD
    [ 13.543] (II) Initializing built-in extension XC-MISC
    [ 13.543] (II) Initializing built-in extension SECURITY
    [ 13.543] (II) Initializing built-in extension XINERAMA
    [ 13.543] (II) Initializing built-in extension XFIXES
    [ 13.543] (II) Initializing built-in extension RENDER
    [ 13.543] (II) Initializing built-in extension RANDR
    [ 13.543] (II) Initializing built-in extension COMPOSITE
    [ 13.543] (II) Initializing built-in extension DAMAGE
    [ 13.547] (II) Initializing extension GLX
    [ 14.003] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 14.003] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 14.003] (II) LoadModule: "evdev"
    [ 14.004] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 14.022] (II) Module evdev: vendor="X.Org Foundation"
    [ 14.022] compiled for 1.12.3.901, module version = 2.7.3
    [ 14.022] Module class: X.Org XInput Driver
    [ 14.022] ABI class: X.Org XInput driver, version 16.0
    [ 14.023] (II) Using input driver 'evdev' for 'Power Button'
    [ 14.023] (**) Power Button: always reports core events
    [ 14.023] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 14.023] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 14.023] (--) evdev: Power Button: Found keys
    [ 14.023] (II) evdev: Power Button: Configuring as keyboard
    [ 14.023] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 14.023] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 14.023] (**) Option "xkb_rules" "evdev"
    [ 14.023] (**) Option "xkb_model" "evdev"
    [ 14.023] (**) Option "xkb_layout" "fr"
    [ 14.023] (**) Option "xkb_variant" "latin-9"
    [ 14.076] (EE) Error loading keymap /var/lib/xkb/server-0.xkm
    [ 14.076] (EE) XKB: Failed to load keymap. Loading default keymap instead.
    [ 14.121] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 14.121] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 14.121] (II) Using input driver 'evdev' for 'Power Button'
    [ 14.121] (**) Power Button: always reports core events
    [ 14.121] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 14.121] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 14.121] (--) evdev: Power Button: Found keys
    [ 14.121] (II) evdev: Power Button: Configuring as keyboard
    [ 14.121] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 14.121] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 14.121] (**) Option "xkb_rules" "evdev"
    [ 14.121] (**) Option "xkb_model" "evdev"
    [ 14.121] (**) Option "xkb_layout" "fr"
    [ 14.121] (**) Option "xkb_variant" "latin-9"
    [ 14.122] (II) config/udev: Adding input device Genius Multimedia Keyboard (/dev/input/event0)
    [ 14.122] (**) Genius Multimedia Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 14.122] (II) Using input driver 'evdev' for 'Genius Multimedia Keyboard'
    [ 14.122] (**) Genius Multimedia Keyboard: always reports core events
    [ 14.122] (**) evdev: Genius Multimedia Keyboard: Device: "/dev/input/event0"
    [ 14.122] (--) evdev: Genius Multimedia Keyboard: Vendor 0x458 Product 0x708
    [ 14.122] (--) evdev: Genius Multimedia Keyboard: Found keys
    [ 14.122] (II) evdev: Genius Multimedia Keyboard: Configuring as keyboard
    [ 14.122] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input0/event0"
    [ 14.122] (II) XINPUT: Adding extended input device "Genius Multimedia Keyboard" (type: KEYBOARD, id 8)
    [ 14.122] (**) Option "xkb_rules" "evdev"
    [ 14.122] (**) Option "xkb_model" "evdev"
    [ 14.122] (**) Option "xkb_layout" "fr"
    [ 14.122] (**) Option "xkb_variant" "latin-9"
    [ 14.123] (II) config/udev: Adding input device Genius Multimedia Keyboard (/dev/input/event1)
    [ 14.123] (**) Genius Multimedia Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 14.123] (II) Using input driver 'evdev' for 'Genius Multimedia Keyboard'
    [ 14.123] (**) Genius Multimedia Keyboard: always reports core events
    [ 14.123] (**) evdev: Genius Multimedia Keyboard: Device: "/dev/input/event1"
    [ 14.123] (--) evdev: Genius Multimedia Keyboard: Vendor 0x458 Product 0x708
    [ 14.124] (--) evdev: Genius Multimedia Keyboard: Found keys
    [ 14.124] (II) evdev: Genius Multimedia Keyboard: Configuring as keyboard
    [ 14.124] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/input/input1/event1"
    [ 14.124] (II) XINPUT: Adding extended input device "Genius Multimedia Keyboard" (type: KEYBOARD, id 9)
    [ 14.124] (**) Option "xkb_rules" "evdev"
    [ 14.124] (**) Option "xkb_model" "evdev"
    [ 14.124] (**) Option "xkb_layout" "fr"
    [ 14.124] (**) Option "xkb_variant" "latin-9"
    [ 14.125] (II) config/udev: Adding input device ImExPS/2 Logitech Explorer Mouse (/dev/input/event5)
    [ 14.125] (**) ImExPS/2 Logitech Explorer Mouse: Applying InputClass "evdev pointer catchall"
    [ 14.125] (II) Using input driver 'evdev' for 'ImExPS/2 Logitech Explorer Mouse'
    [ 14.125] (**) ImExPS/2 Logitech Explorer Mouse: always reports core events
    [ 14.125] (**) evdev: ImExPS/2 Logitech Explorer Mouse: Device: "/dev/input/event5"
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Vendor 0x2 Product 0x6
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found 9 mouse buttons
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found scroll wheel(s)
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found relative axes
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found x and y relative axes
    [ 14.125] (II) evdev: ImExPS/2 Logitech Explorer Mouse: Configuring as mouse
    [ 14.125] (II) evdev: ImExPS/2 Logitech Explorer Mouse: Adding scrollwheel support
    [ 14.125] (**) evdev: ImExPS/2 Logitech Explorer Mouse: YAxisMapping: buttons 4 and 5
    [ 14.125] (**) evdev: ImExPS/2 Logitech Explorer Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 14.125] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input5/event5"
    [ 14.125] (II) XINPUT: Adding extended input device "ImExPS/2 Logitech Explorer Mouse" (type: MOUSE, id 10)
    [ 14.137] (II) evdev: ImExPS/2 Logitech Explorer Mouse: initialized for relative axes.
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) keeping acceleration scheme 1
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) acceleration profile 0
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) acceleration factor: 2.000
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) acceleration threshold: 4
    [ 14.138] (II) config/udev: Adding input device ImExPS/2 Logitech Explorer Mouse (/dev/input/mouse0)
    [ 14.138] (II) No input driver specified, ignoring this device.
    [ 14.138] (II) This device may have been added with another device file.
    [ 14.138] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 14.138] (II) No input driver specified, ignoring this device.
    [ 14.138] (II) This device may have been added with another device file.
    [ 14.305] (II) NVIDIA(GPU-0): Display (BenQ FP93GX (DFP-0)) does not support NVIDIA 3D
    [ 14.306] (II) NVIDIA(GPU-0): Vision stereo.
    [ 14.306] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 14.306] (**) NVIDIA(0): device BenQ FP93GX (DFP-0) (Using EDID frequencies has
    [ 14.306] (**) NVIDIA(0): been enabled on all display devices.)
    [ 19.774] (II) NVIDIA(GPU-0): Display (BenQ FP93GX (DFP-0)) does not support NVIDIA 3D
    [ 19.774] (II) NVIDIA(GPU-0): Vision stereo.
    [ 19.774] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 19.774] (**) NVIDIA(0): device BenQ FP93GX (DFP-0) (Using EDID frequencies has
    [ 19.774] (**) NVIDIA(0): been enabled on all display devices.)
    [ 41.273] (II) evdev: Power Button: Close
    [ 41.273] (II) UnloadModule: "evdev"
    [ 41.290] (II) evdev: Power Button: Close
    [ 41.290] (II) UnloadModule: "evdev"
    [ 41.293] (II) evdev: Genius Multimedia Keyboard: Close
    [ 41.293] (II) UnloadModule: "evdev"
    [ 41.300] (II) evdev: Genius Multimedia Keyboard: Close
    [ 41.300] (II) UnloadModule: "evdev"
    [ 41.303] (II) evdev: ImExPS/2 Logitech Explorer Mouse: Close
    [ 41.303] (II) UnloadModule: "evdev"
    [ 41.793] Server terminated successfully (0). Closing log file.
    The error appear to be where it says
    [ 14.076] (EE) Error loading keymap /var/lib/xkb/server-0.xkm
    [ 14.076] (EE) XKB: Failed to load keymap. Loading default keymap instead.
    This file (server-0.xkm) actually does not exist on the system, BUT: it also does not exist on my others Arch installations and it works fine, without errors.
    By the way: here is the keyboard-entry in the /etc/X11/xorg.conf.d/10-evdev.conf
    Section "InputClass"
    Identifier "evdev keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    Option "XkbLayout" "fr"
    Option "XkbVariant" "latin-9"
    EndSection
    Et voilà. Can somebody help ?
    Last edited by kero (2012-09-27 17:39:38)

    Probably because "latin-9" doesn't exist?
    # nano /usr/share/X11/xkb/symbols/fr
    xkb_symbols "latin9" {
    include "latin"
    include "nbsp(level3)"
    name[Group1]="French (legacy, alternative)";
    key <TLDE> { [ oe, OE, leftdoublequotemark, rightdoublequotemark ] };
    key <AE01> { [ ampersand, 1, dead_acute, periodcentered ] };
    key <AE02> { [ eacute, 2, asciitilde, Eacute ] };
    Try it without the dash (without the "-").
    And don't forget to mark it as solved (by editing the first post).

  • How can I stop acrobat dc continually loading the right hand toolbar on every pdf I open

    How can I stop the right hand toolbar continually loading in the new acrobat dc, it is infuriating and am getting extremely annoyed with it as I have to close it every time I load a pdf.  I use the arrow to close and it reopens on the next pdf.

    Yes very disappointed in how Toolbar functionality generally is so degraded with this DC version. It is as if the product designers have no idea how people use the product. And it degrades its most basic functionality, the ability to read a PDF. I am tempted to switch to one of the many other PDF readers which is one less reason for Creative Cloud.
    The default toolbar contains numerous sticky items that I have never needed in the past 15 years, as sticky icons anyway. That little cell phone icon, email, print, and now with Home/Tools/Document alongside with no ability to move them. These fill valuable toolbar space, the result being that side-by-side windows no longer display the toolbar items I actually use. I almost always have PDFs open beside other applications so this means 100% of the time the new design is flawed vs the prior. This is really really basic for any application: personalized toolbars. It was present in WordPerfect in 1993, for example. DC is not to 1993 UI standards.
    Get on this immediately, please. Specifically, get rid of the persistent right pane as many of us clearly do not want to use it "all the time" as is forced. And, allow the top toolbar to be fully customizable so those of us who have been customizing toolbars in our applications since 1993 can do so in this allegedly state of the art PDF reader.

  • See example (don't know the right words ;)

    i'm starting a new spreadsheet tomorrow and it's going to require me to do this (sorry, i don't even know the right words to use to describe it.. much less the formula names)
    basically:
    A1 = 5
    A2 = 6
    return = 6, 12, 18, 24, 30
    or 6*1, 6*2, 6*3 etc until it does it the amount of times entered in A1.
    sorry if confusing.. i'll try to clarify if need be.
    thanks

    Hi flat5,
    Showing the 1st copy and then the 1st 2 lines of copy 2 (the whole table is too large to show clearly in a screen shot).
    Formula in B4 to tell it when to stop (Line 33)
    =B1×11
    Formula in C4
    =B$2
    Formula in C10
    =B$3
    Formula in C12 (the start of copy 2)
    =IF(ROW()>B$4,"",C1)
    (and Fill Down)
    It will copy whatever is 11 lines above until the Row number exceeds the value in B4, then it inserts "" )NULL).
    Full output in Column C is:
    _Rotate
    copy=yes
    0
    10
    enter
    _SelLast
    _Move
    vertical=yes
    0
    7
    enter
    _Rotate
    copy=yes
    0
    10
    enter
    _SelLast
    _Move
    vertical=yes
    0
    7
    enter
    _Rotate
    copy=yes
    0
    10
    enter
    _SelLast
    _Move
    vertical=yes
    0
    7
    enter
    Copy Column C and paste into a blank TextEdit document. Save, and there is your text file.
    Regards,
    Ian.

  • Firefox download has a circle with line through it, and says I don't have the right "architecture", but previous Firefox worked fine so HELP!

    Tried to download Firefox 4.0. Window where I drag icon to applications folder has a line and a circle over the Firefox. when I attempt to drag it to the folder, it says there is a newer version already there and do I want to replace it. When I replaced it with your new download a window came up that said I don't have the proper architecture to run this. I am using Mac 10.5.8. Please fix this! I'm in the middle of planning an art exhibit and need my Firefox!!!!

    Firefox 4 requires an Intel Mac. You can get Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html
    There is a third party version of Firefox that runs on OS X 10.4/10.5 and PPC Macs, for details see http://www.floodgap.com/software/tenfourfox

  • My Mac is telling me i don't have the right programme to open the trail download page for photoshop

    when i go to download the photos trial i get  pop up on my screen saying that my mac hasn't got the right programmes to open 'aam://SAPCode=PHSP?productVersion=15.0?passPhrase=GihnF3ux4FnRPQzg/SzzrTRHmF12jhlyUYJNn26k p+YN9egl+hLAADi+JcJwLv6UrVKh0Ey05ybiOfLQ8qzeC51b2qeP7T/A0OIsV66s/x4P2Iih686al/d4olSHYTZdER idMiICPiT7nel5vT2/21Zli2AZiWynT6irzBUL9KI=.' can anybody help me out with what i need to download or use to be able to download photoshop ASAPP

    Install the Creative cloud app.
    Mylenium

  • FCP 7 ignores PNG transparency if you don't design the "right" way :)

    So here I am, doing my own thing as usual, editing, getting ready to slap on a lower third. So I decide to design it a different way this time. What if it looks like a curvy sheet of paper coming from the bottom of the screen, so that it's not just a regular suspended lower third that flashes on and off.
    All good until I export the thing. It took me 2 hours to understand why FCP 7 is ignoring png transparency. Apparently, it's not how you export it, it's not the content (weird layers modes), and it's not even the DPI setting. It is the design itself. For some reason, FCP thinks you should never attempt to bring in a lower third that starts at the bottom of the screen, filling it completely. So there ya go. If you want PNG transparency, DO NOT FILL THE BOTTOM PART OF THE IMAGE. Leave some transparent space. Talk about putting your creativity on a leash.
    To better illustrate this odd behavior which I would classify as a bug, I wasted 5 minutes recreating my "problem" for the world to see.
    Have fun!
    http://vimeo.com/19856624

    Hello,
    Thank you for your advice. I have no experience using TIFF or even alpha channels when exporting an image. I understand how they work though, so I'll try that.
    I have fiddled with that regular save as well, and it seemed to make a difference but then again it would still not be recognized as a transparent PNG either way. It may be a bug in my setup, I don't know.
    Usually, if I want to animate something I use motion and that seems to take care of alpha channels on export. But of course, it would be a lot faster to do it right there in FCP, so thank you for again, I'll try using TIFF exports.

Maybe you are looking for