Fbsplash not working - initscripts-issue?

Hey guys,
lately i tried to get some more eye-candy by installing fbsplash from AUR.
I did everything the way it is explained in the wiki-article (at least i think i did).
what i didn't do (cause it wasn't mentioned), is to install/build a new/patched kernel. is this needed?
well, the problem i encounter is, that when i boot my machine, i get lot's of errors like "basename: command not found", which originate mostly from a script called splash-functions.sh or somehow. but: if i open a console windows and type in the command basename is found and working. thus, i expect that the problem might be the initscripts-package? but i installed it and also rebuild the initramdisk. it even lists fbsplash as a hook while rebuildung.
it would like to give you the complete output of error-messages, but i don't know where to find them? i searched the whole /var/log-directory, but even in the everything.log-logfile i couldn't find any of the messages. maybe something with syslog-ng is also wrong?
all the same, i try to give you some information which might be usefull for investigating my problem, so here they go:
/etc/rc.conf - DAEMONS
DAEMONS=(syslog-ng acpid portmap cpufreq fam hal network alsa netfs crond sensors networkmanager fbsplash gdm tor)
/etc/mkinitpcio.conf - HOOKS
HOOKS="base udev autodetect pata scsi sata fbsplash filesystems"
maybe to mention: i'm using an IDE-only system (older laptop when sata wasn't out yet, but i think the new ATA-driver has went into the SATA-tree or something like that...)
that's the command i used to rebuild the initrd:
[...#] mkinitcpio -p kernel26
and that's a part of /var/log/syslog.log:
Jul 17 21:48:21 leiferiksson syslog-ng[4517]: Termination requested via signal, terminating;
Jul 17 21:48:21 leiferiksson syslog-ng[4517]: syslog-ng shutting down; version='3.0.3'
Jul 17 21:55:00 leiferiksson syslog-ng[4519]: syslog-ng starting up; version='3.0.3'
Jul 17 21:58:51 leiferiksson syslog-ng[4519]: Termination requested via signal, terminating;
Jul 17 21:58:51 leiferiksson syslog-ng[4519]: syslog-ng shutting down; version='3.0.3'
Jul 17 22:00:22 leiferiksson syslog-ng[4520]: syslog-ng starting up; version='3.0.3'
Jul 17 22:15:46 leiferiksson syslog-ng[4520]: Termination requested via signal, terminating;
Jul 17 22:15:46 leiferiksson syslog-ng[4520]: syslog-ng shutting down; version='3.0.3'
Jul 17 22:17:20 leiferiksson syslog-ng[4521]: syslog-ng starting up; version='3.0.3'
Jul 17 22:46:23 leiferiksson syslog-ng[4521]: Termination requested via signal, terminating;
Jul 17 22:46:23 leiferiksson syslog-ng[4521]: syslog-ng shutting down; version='3.0.3'
Jul 17 22:48:11 leiferiksson syslog-ng[4520]: syslog-ng starting up; version='3.0.3'
Jul 17 23:03:41 leiferiksson syslog-ng[4520]: Termination requested via signal, terminating;
Jul 17 23:03:41 leiferiksson syslog-ng[4520]: syslog-ng shutting down; version='3.0.3'
Jul 17 23:05:14 leiferiksson syslog-ng[4479]: syslog-ng starting up; version='3.0.3'
Jul 17 23:36:49 leiferiksson syslog-ng[4479]: Termination requested via signal, terminating;
Jul 17 23:36:49 leiferiksson syslog-ng[4479]: syslog-ng shutting down; version='3.0.3'
Jul 18 14:07:41 leiferiksson syslog-ng[4338]: syslog-ng starting up; version='3.0.3'
Jul 18 14:10:24 leiferiksson syslog-ng[4338]: Termination requested via signal, terminating;
Jul 18 14:10:24 leiferiksson syslog-ng[4338]: syslog-ng shutting down; version='3.0.3'
Jul 18 14:12:48 leiferiksson syslog-ng[4306]: syslog-ng starting up; version='3.0.3'
Jul 18 14:46:18 leiferiksson syslog-ng[4306]: Termination requested via signal, terminating;
Jul 18 14:46:18 leiferiksson syslog-ng[4306]: syslog-ng shutting down; version='3.0.3'
Jul 18 14:47:05 leiferiksson syslog-ng[4481]: syslog-ng starting up; version='3.0.3'
Jul 18 14:53:55 leiferiksson syslog-ng[4481]: Termination requested via signal, terminating;
Jul 18 14:53:55 leiferiksson syslog-ng[4481]: syslog-ng shutting down; version='3.0.3'
Jul 18 15:17:40 leiferiksson syslog-ng[4480]: syslog-ng starting up; version='3.0.3'
Jul 18 15:32:17 leiferiksson syslog-ng[4480]: Termination requested via signal, terminating;
Jul 18 15:32:17 leiferiksson syslog-ng[4480]: syslog-ng shutting down; version='3.0.3'
Jul 18 15:32:19 leiferiksson syslog-ng[5701]: syslog-ng starting up; version='3.0.3'
i don't really know why it's always starting and shutting down...at least it always seems to be running in the end.
Last edited by treysis (2009-07-18 14:07:59)

i only have /var/log/messages.log and there's nothing in there (well, there is of course something but no error-messages).
i think i'll have to fix the syslog-ng problem first? any idea how? i don't even know what to search for...
here's my /etc/syslog-ng.conf
@version: 3.0
# /etc/syslog-ng.conf
options {
stats_freq (0);
flush_lines (0);
time_reopen (10);
log_fifo_size (1000);
long_hostnames(off);
use_dns (no);
use_fqdn (no);
create_dirs (no);
keep_hostname (yes);
perm(0640);
group("log");
source src {
unix-stream("/dev/log");
internal();
file("/proc/kmsg");
destination d_authlog { file("/var/log/auth.log"); };
destination d_syslog { file("/var/log/syslog.log"); };
destination d_cron { file("/var/log/crond.log"); };
destination d_daemon { file("/var/log/daemon.log"); };
destination d_kernel { file("/var/log/kernel.log"); };
destination d_lpr { file("/var/log/lpr.log"); };
destination d_user { file("/var/log/user.log"); };
destination d_uucp { file("/var/log/uucp.log"); };
destination d_mail { file("/var/log/mail.log"); };
destination d_news { file("/var/log/news.log"); };
destination d_ppp { file("/var/log/ppp.log"); };
destination d_debug { file("/var/log/debug.log"); };
destination d_messages { file("/var/log/messages.log"); };
destination d_errors { file("/var/log/errors.log"); };
destination d_everything { file("/var/log/everything.log"); };
destination d_iptables { file("/var/log/iptables.log"); };
destination d_acpid { file("/var/log/acpid.log"); };
destination d_console { usertty("root"); };
# Log everything to vc12
destination console_all { file("/dev/vc/12"); };
filter f_auth { facility(auth); };
filter f_authpriv { facility(auth, authpriv); };
filter f_syslog { program(syslog-ng); };
filter f_cron { facility(cron); };
filter f_daemon { facility(daemon); };
filter f_kernel { facility(kern) and not filter(f_iptables); };
filter f_lpr { facility(lpr); };
filter f_mail { facility(mail); };
filter f_news { facility(news); };
filter f_user { facility(user); };
filter f_uucp { facility(cron); };
filter f_news { facility(news); };
filter f_ppp { facility(local2); };
filter f_debug { not facility(auth, authpriv, news, mail); };
filter f_messages { level(info..warn) and not facility(auth, authpriv, mail, news, cron) and not program(syslog-ng) and not filter(f_iptables); };
filter f_everything { level(debug..emerg) and not facility(auth, authpriv); };
filter f_emergency { level(emerg); };
filter f_info { level(info); };
filter f_notice { level(notice); };
filter f_warn { level(warn); };
filter f_crit { level(crit); };
filter f_err { level(err); };
filter f_iptables { match("IN=" value("MESSAGE")) and match("OUT=" value("MESSAGE")); };
filter f_acpid { program("acpid"); };
log { source(src); filter(f_acpid); destination(d_acpid); };
log { source(src); filter(f_authpriv); destination(d_authlog); };
log { source(src); filter(f_syslog); destination(d_syslog); };
log { source(src); filter(f_cron); destination(d_cron); };
log { source(src); filter(f_daemon); destination(d_daemon); };
log { source(src); filter(f_kernel); destination(d_kernel); };
log { source(src); filter(f_lpr); destination(d_lpr); };
log { source(src); filter(f_mail); destination(d_mail); };
log { source(src); filter(f_news); destination(d_news); };
log { source(src); filter(f_ppp); destination(d_ppp); };
log { source(src); filter(f_user); destination(d_user); };
log { source(src); filter(f_uucp); destination(d_uucp); };
#log { source(src); filter(f_debug); destination(d_debug); };
log { source(src); filter(f_messages); destination(d_messages); };
log { source(src); filter(f_err); destination(d_errors); };
log { source(src); filter(f_emergency); destination(d_console); };
log { source(src); filter(f_everything); destination(d_everything); };
log { source(src); filter(f_iptables); destination(d_iptables); };
# Log everything to vc12
#log { source(src); destination(console_all); };
Last edited by treysis (2009-07-18 21:50:19)

Similar Messages

  • Macbook pro late 2008 (unibody) backlight not working, trackpad issue

    Hi,
    My wife is running 10.7.4 (Lion) on a MacBook Pro late 2008, first gen unibody. There is two issue with her computer.
    The first issue is that the backlight keyboard is not working correctly. In fact, it is not working at all. My assumption is that it stopped working when it had a a display assembly replacement in 2010. My wife not behing to technical realized she did not had this feature when I bought a MBA 13" last year. It could be something with the system (OS) but I'm pretty sure it is not. I open the back of the case to see if something (a missing wire connectivity) could be found, but none step to my eyes. I did not want to dismantle everything in case I'll be making it worst!
    The second issue is the trackpad. She told me many times that her mouse was not working as expected, and when I looked at, I finally found that the problem was not the mouse, but the trackpad. What I found is that the trackpad button, sometimes, stayed pressed. If that happen, eventually, the mouse is acting very trangely! My wife never uses the trackpad, so I can't figure out it is an abuse of it. To temporaly resolve the issue, I dissabled the trackpad when a mouse is connected in the Universal access system pref.
    I plan to have it send to the Apple store next time I go near one. The Apple Care is expired...
    My questions are:
    any idea of what may be the problem and is it repairable easily by myself?
    Could it be that the trackpad is broken in anyway?
    Could it be possible that the technician forgot to reconnect a cable near the keyboard (under the motherboard) that prevent the backlight to work?
    Thanks

    Hi,
    My wife is running 10.7.4 (Lion) on a MacBook Pro late 2008, first gen unibody. There is two issue with her computer.
    The first issue is that the backlight keyboard is not working correctly. In fact, it is not working at all. My assumption is that it stopped working when it had a a display assembly replacement in 2010. My wife not behing to technical realized she did not had this feature when I bought a MBA 13" last year. It could be something with the system (OS) but I'm pretty sure it is not. I open the back of the case to see if something (a missing wire connectivity) could be found, but none step to my eyes. I did not want to dismantle everything in case I'll be making it worst!
    The second issue is the trackpad. She told me many times that her mouse was not working as expected, and when I looked at, I finally found that the problem was not the mouse, but the trackpad. What I found is that the trackpad button, sometimes, stayed pressed. If that happen, eventually, the mouse is acting very trangely! My wife never uses the trackpad, so I can't figure out it is an abuse of it. To temporaly resolve the issue, I dissabled the trackpad when a mouse is connected in the Universal access system pref.
    I plan to have it send to the Apple store next time I go near one. The Apple Care is expired...
    My questions are:
    any idea of what may be the problem and is it repairable easily by myself?
    Could it be that the trackpad is broken in anyway?
    Could it be possible that the technician forgot to reconnect a cable near the keyboard (under the motherboard) that prevent the backlight to work?
    Thanks

  • Reminder app not working correctly, issue started around Sept. 1,2014. Will not allow me to set date and time for a reminder.

    Today I noticed an issue with my Reminder app on my IPhone 5s. Using OS 7.1.2. I called Apple, and the tech didn't know what he was doing and just trying different things.The reminder app will not let me set a date and time for reminder. Finally he escalated the call to a senior advisor who was rude, arrogant and unprofessional. He insisted the Reminder App was updated with the new update of IOS September/October 2013. Not true, the issue just started about 5 days ago August 31,2014. Now there is an additional reminder line for reminder entries that I have to use and have to transfer all my reminders manually from the other part of the app. The feature does exist; if I try to set a date and time for the reminder it appears for 1-2 seconds and then disappears.
    Has anyone else noticed this issue?

    He insisted the Reminder App was updated with the new update of IOS September/October 2013. Not true
    Yes, it is true.
    iOS 7 was released 18 Sep 2013. At this time, the Reminders app was updated (with most everything else).
    the issue just started about 5 days ago August 31,2014.
    Your issue just started but the app was not updated 5 days ago.
    Now there is an additional reminder line for reminder entries that I have to use
    I don’t understand what this means...
    Open Reminders, type the reminder, tap the i at the end, turn on Remind me on a day and enter the date/time.

  • Adobe 10 ReaderX debugger.js not working & security Issues

    Hi,
    I am trying to get this javascript http://johnford.is/downloads/pdf_bookmark.js working.  It enables a bookmark in Adobce Reader and apparently quit working in version 10 under windows 7.  I copied the code here C:\Users\Owner\AppData\Roaming\Adobe\Acrobat\10.0\JavaScripts.  But when I copy the debugger.js which ships with Adobe it does not work eiter complaining about syntax: 
    ReferenceError: getString is not defined
    25:Folder-Level:User:debugger.js
    My more important question is not how to get the debugger working but how to get the code working to create the bookmark.  I tried to change all the enhanced security and options in the javascript preferences screen.  I think something else is required not to get this code work because of security in Adobe 10.  If you look at comments the developer left in the code they had to add code to get it working because of security in Adobe 8:
    * Extra security in Adobe Reader 8 forces access of global variables
    * by multiple documents to be setup as a 'trustedFunction'
    getPDFBookmark = app.trustedFunction ( function() {
    app.beginPriv();
        return global.pdf_bookmark;
        app.endPriv();
    Bottom line is the new bookmark feature in Adobe 10 is cumbersome and not intuitive and I want to use what this other developer wrote.  A bookmark should be 1-click and as natural as placing a bookmark in a book.  Duh!  No one at Adobe understands that. 
    chau from Chile.
    Walker Rowe

    Change
    // Add bookmark menu
    app.addSubMenu({
        cName: translation.bookmark,
        cParent: "Tools",
        cExec: "void(0);",
        cEnable: "event.rc = (event.target != null);"
    to
    // Add bookmark menu
    app.addSubMenu({
        cName: translation.bookmark,
        cParent: "File",
        cExec: "void(0);",
        cEnable: "event.rc = (event.target != null);"

  • HP G72 USB Ports Not Working - Battery Issue?

    I recently purchased a G72-250US and found out too late that none of the three USB ports work. I have tried three different devices - a mechanical keyboard, a Razer mouse, and a SanDisk thumb drive. Of the three, the thumb drive is the only one which receives enough power for its LED to remain on, but none of the devices are recognized by Windows, even as 'unknown' devices.
    I've gone through every step I could find or think of to correct any possible sources of problems that could be created by software - uninstalling USB drivers, changing power settings, manually adding data to the Windows registry - and nothing has worked. I have not been able to find any options in the BIOS regarding the USB ports. I have also tried to use 'refresh' in the HP Support Assistant's Health Analysis tool, but the process always fails at 'Gathering Information'.
    This has led me to believe that there is a hardware issue, but I'm not sure what the nature of this issue could be. If the ports were just dead, why would the thumb drive be getting any power at all? The only thing I can think of is that there is an issue related to the battery. Per another thread on this topic, I unplugged the laptop and took out the battery and left it like that overnight, but this did not solve the problem. I then ran the Battery Check from the Support Assistant, and it very quickly indicated a failure.
    Is it possible that a bad battery is causing the USB ports to not provide enough power to my devices? I previously owned a Compaq CQ42 whose battery was so bad it caused an error to pop up every time I turned on or restarted the computer, but this never resulted in any issues aside from having to keep it plugged in at all times.

    Hi,
    Please go to the following link to download chipset driver and reinstall on your computer:
       http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=4063&lc=en&cc=us&dlc=en&sw_lang=&product=4217...
    Hope this helps and good luck.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Validation not working when Issue is modified

    We have picklist field Action on which we have put a field validation which will ensure that depending on the Job title of the logged User, he will be able to select appropriate Action value.
    The problem we are facing is : The validation is not triggered when an Issue is opened and saved without any changes to Action picklist.
    for eg: If User 1 with Role A creates an Issue with Action values as per his Role. Now User 2 with Role B opens the Issue , he is displayed with the Action value saved by User 1. Now if User 2 changes the details of the Issue and doesn't change the Action, the Issue is saved. The validation doesn't work in this case, as Action is not modified.
    Validation is as follows:
    Left([<Action>],4) = Left(JobTitle(), 4) OR Left([<Action>],4) = IIf((JobTitle()="Manager" OR JobTitle()="Executive"),"Fact" ,"xxxx") OR Left([<Action>],4) = IIf(JobTitle()="Executive","Mana" ,"xxxx")
    Also we cannot restrict users using Access control because, if we Restrict Issue modification by making Issues read-only for non owners , then Users cannot add related information like attachments and solutions.
    Any ideas would be welcome in this regard.
    Sandy

    I have a similar situation that I had to create a workflow rule that is triggered "before a modified record has been saved" and the rule looks for a change on record like;
    PRE('<ModifiedTimestamp>')<>[<ModifiedTimestamp>] AND PRE('<Action>')=[<Action>] this checks to see if the record has been modified but the Action hasn't.
    Then you want to have the workflow rule "Update Value" of the "Action" field with the same value that it had at the beginning of the operation, like;
    [<Action>] in the "Value" formula field and ensure the "overwrite existing values" check box is selected.
    In essence you're sending the same value to the "Action" field but it will trigger the Validation rules each time there is any change on the record.
    Let me know if you have questions...
    Dan

  • IPhone 4s iMessage not working, known issue?

    I have the 4s and yesterday my iMessage was on as usual all the messages to multiple contacts failed or said send and never received. Also my incoming messages never got through iMessage videos said they sent and never went through. In the others contacts phone my texts showed up as my apple id instead of my phone number. I had to turn iMessage off and now everything's working fine. I also work in tech care for android and windows phones and got several calls that android users could not text iPhone users. I also has someone that had just switched from the iPhone 4 to an android and her text messages were going to her iPhone still from other iPhone users. But her other contacts SMS were coming to her new android device. Has anyone had this issue recently or know how to fix it..?

    Thanks! I followed your link and clicked on a few pages and found this page which helped solve my problem: http://support.apple.com/kb/TS4268
    I had previously tried turning iMessage off and then back on and it didn't make a difference. It turns out I had to go to Settings-->Messages-->Send & Receive and then at the top where it has your Apple ID, I had to sign out then sign back in again - no idea why but hey, the main thing is it's working now thanks for your help!

  • Ipod Not Working - Battery Issue?

    I have read some about the battery life of an Ipod not being that long. And you have to send it in to be replaced. Is that true? If so, how do you know when the issue is the battery and not something else.
    I havea problem with my Ipod that is9 months old. It will not turn on. I tried to turn it on when it was plugged in to the AC, when it was plugged into the computer, and and when it was on battery power. Nothing. The little button to deactivate the touch pad was not on lock either.
    Thoughts? I assume it's still under warranty and will likely try and return it.
    Thanks in advance!
    Greg
    HP Pavilion   Windows XP  

    Your iPod itself is probably screwed up, not the battery. If it was connected to power it would have turned on.

  • Safari not working (Flash issue) but FireFox is... is there an issue with Safari?

    When I access Connect in Safari I am asked to upgrade my Flash player - it is up to date... Firefox works just fine. Does anyone else have Safari access or Flash issues?

    Connect version 8 requires that Adobe Flash 10.1 be installed.  I would suggest that you uninstall Flash and then reinstall from here:
    http://kb2.adobe.com/cps/865/cpsid_86551.html#ostype=m,prob1=uninst,os=m10.6,
    Adobe Connect is built to use the Adobe Flash player and it works great on Mac OSX. I suspect your Flash instance is corrupt and needs replacement. I use Safari all day long with Adobe Connect 7.5 and 8.

  • HT5655 Feb 2013 Adobe Flash Player Upgrade Install Does not work - metafile issue

    I tried uploading the Feb 2013 update without success. Adobe troubleshooting suggested uninstalling existing version of AFP - which I did - still get "Metafile Instalation failed" - now have NO AFP. Adobe says they are aware of the issue and working on it. Any ideas as to how to reupload my old AFP version??

    That's great to hear that you were able to find a solution.
    I've been trying to fix this issue with Adobe for 5 days now and no one is coming back to me (tried the terminal cd solution and it doesn't work).
    Luigi could you expand on where you were directed to find a solution? Running  
    sudo ./Install\ Adobe\ Flash\ Player.app/Contents/MacOS/Install\ Adobe\ Flash\ Player 
    has only given me a "command no found" message.
    Thanks

  • [SOLVED] (ish) Trine 2 not working, ksmserver issue ?

    I have Trine 2 that I got from the Humble Indie Bundle 9, I failed at "installing" it manually, because of some selinux nonsense, so I used the aur package "trine2-hib" to help me install it.
    It was working perfectly, until after some updates it didn't work anymore.
    This all started together with the problems caused by the latest update of kde stuff and qt4 not being updated, that solved, I though this would've been solved too, well, not really.
    Whenever I run Trine 2 from a .desktop launcher, it kills my kde session and shows me this: "Could not start ksmserver. Check your installation " and only an option to logout.
    trine2-hib.desktop content :
    [Desktop Entry]
    Version=1.0
    Type=Application
    Categories=Game;
    Name=Trine 2: Complete Story
    Comment=Frozenbyte
    GenericName=Action-Puzzle Platformer
    Icon=trine2
    Exec=trine2
    Terminal=false
    If I run it from a console, with the command "trine2" the game starts loading,  and then it just closes.
    Terminal output:
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.hdmi.0:CARD=0,AES0=4,AES1=130,AES2=0,AES3=2'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM hdmi
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.hdmi.0:CARD=0,AES0=4,AES1=130,AES2=0,AES3=2'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM hdmi
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.modem.0:CARD=0'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.phoneline:CARD=0,DEV=0
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.modem.0:CARD=0'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.phoneline:CARD=0,DEV=0
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.modem.0:CARD=0'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM phoneline
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.modem.0:CARD=0'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM phoneline
    ALSA lib dlmisc.c:252:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
    ALSA lib dlmisc.c:252:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
    ALSA lib pcm_dmix.c:961:(snd_pcm_dmix_open) The dmix plugin supports only playback stream
    ALSA lib dlmisc.c:252:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
    ALSA lib dlmisc.c:252:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
    Expression 'SetApproximateSampleRate( pcm, hwParams, sr )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 1959
    Expression 'PaAlsaStreamComponent_InitialConfigure( &self->capture, inParams, self->primeBuffers, hwParamsCapture, &realSr )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 2634
    Expression 'PaAlsaStream_Configure( stream, inputParameters, outputParameters, sampleRate, framesPerBuffer, &inputLatency, &outputLatency, &hostBufferSizeMode )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 2758
    Pa_OpenDefaultStream failed Invalid sample rate
    If I run it from a terminal with "kdesudo trine2" it works perfectly, but using this on a regular basis is less than ideal.
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.hdmi.0:CARD=0,AES0=4,AES1=130,AES2=0,AES3=2'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM hdmi
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.hdmi.0:CARD=0,AES0=4,AES1=130,AES2=0,AES3=2'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM hdmi
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.modem.0:CARD=0'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.phoneline:CARD=0,DEV=0
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.modem.0:CARD=0'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.phoneline:CARD=0,DEV=0
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.modem.0:CARD=0'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM phoneline
    ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.CA0106.pcm.modem.0:CARD=0'
    ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM phoneline
    ALSA lib dlmisc.c:252:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
    ALSA lib dlmisc.c:252:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
    ALSA lib pcm_dmix.c:961:(snd_pcm_dmix_open) The dmix plugin supports only playback stream
    ALSA lib dlmisc.c:252:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
    ALSA lib dlmisc.c:252:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
    Expression 'SetApproximateSampleRate( pcm, hwParams, sr )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 1959
    Expression 'PaAlsaStreamComponent_InitialConfigure( &self->capture, inParams, self->primeBuffers, hwParamsCapture, &realSr )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 2634
    Expression 'PaAlsaStream_Configure( stream, inputParameters, outputParameters, sampleRate, framesPerBuffer, &inputLatency, &outputLatency, &hostBufferSizeMode )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 2758
    Pa_OpenDefaultStream failed Invalid sample rate <<This appears only when I close the game
    I don't think that any of that alsa nonsense has anything to do with this.
    I'm putting this on Multimedia as this is actually a problem with a game, however I don't think the game itself is what's causing the problems.
    Any ideas ?
    Thanks in advance.
    Last edited by LucetLux (2014-01-08 16:59:55)

    Sorry I lost track of this thread, I hope it isn't too late.
    Answering to your points;
    1; No it doesn't happen, if I run it like that it only closes after the loading screen, but it doesn't crash kde.
    2: If I run it on windowed mode it works just fine.
    3: I'm using the catalyst proprietary drivers, most other things I've tried work fine, far better than using the opensource drivers, that's why I'm using the proprietary ones. i've only had problems with some windows applications on wine that could be related to the drivers.
    4: I don't really know what could be considered of interest, but this looks like it's related:
    kwin(22944) KWin::Client::readUserTimeMapTimestamp: User timestamp, ASN: 4294967295
    kwin(22944) KWin::Client::readUserTimeMapTimestamp: User timestamp, final: 'ID: 85983238 ;WMCLASS: "trine2_linux_32bit" : "trine2_linux_32bit" ;Caption: "OpenGL test" ' : 194644424
    kwin(22944) KWin::Workspace::allowClientActivation: Activation, compared: 'ID: 85983238 ;WMCLASS: "trine2_linux_32bit" : "trine2_linux_32bit" ;Caption: "OpenGL test" ' : 194644424 : 194639746 : true
    kwin(22944) KWin::Workspace::updateClientArea: screens: 1 desktops: 4
    kwin(22944) KWin::Workspace::updateClientArea: Done.
    kwin(22944) KWin::Workspace::allowFullClientRaising: Raising: Belongs to active application
    kwin(22944) KWin::Workspace::updateClientArea: screens: 1 desktops: 4
    kwin(22944) KWin::Workspace::updateClientArea: Done.
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 20 (X_GetProperty)
    Resource id: 0x5200006
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 20 (X_GetProperty)
    Resource id: 0x5200006
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 20 (X_GetProperty)
    Resource id: 0x5200006
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 20 (X_GetProperty)
    Resource id: 0x5200006
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 20 (X_GetProperty)
    Resource id: 0x5200006
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 20 (X_GetProperty)
    Resource id: 0x5200006
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 20 (X_GetProperty)
    Resource id: 0x5200006
    kwin(22944) KWin::Client::readUserTimeMapTimestamp: User timestamp, ASN: 4294967295
    Thanks for your help, and sorry for the long delay.
    Last edited by LucetLux (2014-01-04 01:00:55)

  • Color 1.0.4 update not working - vram issue?

    so i just updated Color via software update to 1.0.4 - i try to open it, and it's telling me that i need 124mb vram - ? Now color won't open at all. do i have any options of salvage? or do i have to re-install? ****...

    You will be asking the machine to do more than it is really capable of. "Overclockers" do this kind of thing to play games faster -- not really a professional approach.
    Overstressing the cards will lead to early burnout, but operationally, the most likely result is unpredictable behaviour, renders with artifacts, random crashes, that sort of thing.
    From an operator's point of view, even MacBookPro is not the preferred choice of platform unless its the full HD-monitor version. Normally, the displays on MacBooks are too small to even accommodate the User Interface-- let alone present any kind of meaningful rendition of the media under correction.
    jPo

  • Console port not working.

    Hello!
    I would like to know if there's some situation what a console port could be disabled, or something like that.
    I'm trying to configure a Catalyst 2960 Series PoE-24 by the console port using the hyperterminal, but it's not working. I verified the cable and the COM port, and everything works with another switch (same model).
    Does anyone knows what could possibly be happening?

    My colleagues have focused on the usual issues that cause the console to not work - possible issues with the terminal emulator or more likely is mis match in the speed setting of the console. If you work through those possibilities and the console still does not work then I have another possibility to suggest. Perhaps someone configure the command no exec under line con 0. This would cause the console to not work. It would display messages during bootup but would not accept any commands.
    Does the switch seem to boot up normally? Was it configured with an IP address that you could potentially telnet to? This would give you a way to investigate the configuration.
    If my suggestion is correct and the issue is that no exec was configured then you should be able to use password recovery to bypass the existing config and this could restore normal operation for the switch.
    HTH
    Rick

  • HT4623 My phone can not activated because the activation server is temoporarily unavailable. i try activate on itunes but is not working.

    My phone can not activated because the activation server is temoporarily unavailable. i try activate on itunes but is not working.

    Activation issues are typically the result of a device that has been hacked or jailbroken.
    If that is the case, no support can be provided here.

  • TS1398 I am unable to connect wifi on my phone 4s since last 2 weeks... I am living in shanghai and did not have this issue since 2 weeks... iPad works fine... Please suggest some measures... Tried the on off reset settings etc.

    I am unable to connect wifi on my phone 4s since last 2 weeks... I am living in shanghai and did not have this issue since 2 weeks... iPad works fine... Please suggest some measures... Tried the on off reset settings etc. but no luck ...
    In fact after updating the software to the latest version I am having more of this... Sometimes the wifi button freezes an I can't even slide it to on / off...
    Thanks

    Noooo! Actually I too had d same prob wit my iPhone 4S. When I connect to my wifi network it won't get connected or it wil be grey scaled! I took it to d istore and since I had warranty they replaced my IPhone. It iPad charger has high volt than ur iPhone charger so when u connect wit it, there is a chance where large amount of current passes thru ur iPhone. So for sure it wil damage ur motherboard and its parts! Many said that iOS 6 or 6.0.1 or 6.1 was d reason for tis wifi prob! But apple never made its mistake wit it's software. If and only if u hav hardware prob u wil hav these sort of wifi prob Bluetooth prob! So best way s to replace ur iPhone!

Maybe you are looking for

  • SBO0001 error DBD:ORA12154 error while creating new connection

    Dear All, I have installed XIR3 on a windows 64 bit with oracle 10g R2 client. The CMS is up and running and I am able to connect to the infoview and view the lsit of all the migrated objects from BOXIR2. But, when I am trying to create a new connect

  • New problems mounting an old external drive!

    I have a 3TB external hitachi drive that has worked great. I have it formatted as MacOS extended Journaled. I haven't used it for quite a while I plugged it in today and I get a popup box: The disk you inserted was not readable by this computer. I in

  • What Production Method Should I use

    We sell products to customers the following way : We recieve an order - create a PO. The item is usually a BOM, i.e. A steel plate with holes drilled. We create a PO for the Steel PLate from supplier 1 and order them to ship to Supplier 2 (Engineerin

  • Disoverer Business Area and Timestamp

    I'm using BI Discoverer 10.1.2.1 and when I create a new business area any Timestamp fields are not imported. They are just not there. I switched one field to a Date and it imported fine. Is it the case that BI Discoverer 10.1.2.1 can't cope with Tim

  • Cancellation of sales order through VA02

    Hi experts, My user wants to cancel some sales orders through VA02.He select line item 10 and then goes to "reasons for rejection" and put " 51 cancelled".then save it.Systems shows following error and he unables to cancel it. You cannot select assem