Also "RDT_assertion failed: 0, file ../src/rde/lockset.c, line 493"

Dear experts:
I'm a newcomer here, also a freshman for Sun development tools. I met one error during debuging my programme by DRDT. It's the first time to use this tool for me, I just refered the user guide to configure. After I executed "collect -r on ./xxx", the process can run as normal at the beginning. It was interrupted by the error "RDT_assertion failed: 0,file ../src/rde/lockset.c, line 493" in half running. I cannot find any result was detected in tha.1.er. I have no idea for this error. :-(
Would you like to give me some suggestions?
Ivory

Hi, Ivory
Would you like to post the eviroment information, inlcuding machine type(sparc or x86) and OS type(solaris or linux)?. And if it is ok, would you like post the source file or binary file tested? You can also send it by email. ([email protected])
Thanks,
-Xi

Similar Messages

  • RDT_assertion failed: 0, file ../src/rde/lockset.c, line 493

    The following assertion occurs with the Feb 2007 thread analyzer
    (Sun Solaris 10 11/06 SPARC with all the patches required by
    Sun Studio C++ Feb 2007)
    % collect -r all tntnet -c tntnet.conf
    WARNING: Target `tntnet' is not instrumented for datarace detection;
    reported datarace data may be misleading
    Creating experiment database tha.6.er ...
    2007-04-26 13:33:16.09216 [19660.1] INFO tntnet.tntnet - create 5 worker threads
    RDT_assertion failed: 0, file ../src/rde/lockset.c, line 493
    % CC -V
    CC: Sun C++ 5.9 SunOS_sparc Build40_1 2007/02/08
    For the "WARNING: Target `tntnet' is not instrumented for datarace detection",
    I look through the large build output for cxxtools, tntnet, and the myfirstproject.so
    shared library and as far as I can see, every .o, .so in cxxtools, tntnet, and
    myfirstproject.so is compiled and linked with -mt -xinstrument=datarace.
    But no need to take my word for it, the testcase is:
    1. Need to fix SC12_02_07/SUNWspro/prod/include/CC/Cstd/stdcomp.h
    (I will explain why in the Sun Studio C++ forum):
    /% diff -wc /h/goanna/0/SC12_02_07/SUNWspro/prod/include/CC/Cstd/orig/stdcomp.h /h/goanna/0/SC12_02_07/SUNWspro/prod/include/CC/Cstd/stdcomp.h
    *** /h/goanna/0/SC12_02_07/SUNWspro/prod/include/CC/Cstd/orig/stdcomp.h Thu Feb 8 23:18:51 2007
    --- /h/goanna/0/SC12_02_07/SUNWspro/prod/include/CC/Cstd/stdcomp.h Thu Apr 19 14:57:28 2007
    *** 1304,1311 ****
    /* #define RWSTDNO_BAD_CAST 1 */
    /* #define RWSTD_NO_BAD_CAST 1 */
    ! #define RWSTDNO_MEMBER_TEMPLATES 1
    ! #define RWSTD_NO_MEMBER_TEMPLATES 1
    #define RWSTDNO_FRIEND_TEMPLATES 1
    #define RWSTD_NO_FRIEND_TEMPLATES 1
    --- 1304,1311 ----
    /* #define RWSTDNO_BAD_CAST 1 */
    /* #define RWSTD_NO_BAD_CAST 1 */
    ! /* #define RWSTDNO_MEMBER_TEMPLATES 1 */
    ! /* #define RWSTD_NO_MEMBER_TEMPLATES 1 */
    #define RWSTDNO_FRIEND_TEMPLATES 1
    #define RWSTD_NO_FRIEND_TEMPLATES 1
    *** 1406,1415 ****
    #define RWSTDNO_INIT_CONST_TEMPLATE_REF_ARG 1
    #define RWSTD_NO_INIT_CONST_TEMPLATE_REF_ARG 1
    ! #define RWSTDNO_CLASS_PARTIAL_SPEC 1
    ! #define RWSTD_NO_CLASS_PARTIAL_SPEC 1
    ! #define RWSTDNO_FUNC_PARTIAL_SPEC 1
    ! #define RWSTD_NO_FUNC_PARTIAL_SPEC 1
    /* #define RWSTDNO_OVERLOAD_OF_TEMPLATE_FUNCTION 1 */
    /* #define RWSTD_NO_OVERLOAD_OF_TEMPLATE_FUNCTION 1 */
    --- 1406,1415 ----
    #define RWSTDNO_INIT_CONST_TEMPLATE_REF_ARG 1
    #define RWSTD_NO_INIT_CONST_TEMPLATE_REF_ARG 1
    ! /* #define RWSTDNO_CLASS_PARTIAL_SPEC 1 */
    ! /* #define RWSTD_NO_CLASS_PARTIAL_SPEC 1 */
    ! /* #define RWSTDNO_FUNC_PARTIAL_SPEC 1 */
    ! /* #define RWSTD_NO_FUNC_PARTIAL_SPEC 1 */
    /* #define RWSTDNO_OVERLOAD_OF_TEMPLATE_FUNCTION 1 */
    /* #define RWSTD_NO_OVERLOAD_OF_TEMPLATE_FUNCTION 1 */
    2. Download and install the latest autotools (automake, autoconf, libtool, gettext).
    3. download and unpack cxxtools 1.4.3.5 and tntnet 1.5.3.4 from:
    http://www.tntnet.org/download.hms
    4. grep pthread **/Makefile.am, remove -lpthread and -pthread.
    5. Make the following changes to Makefile.am files:
    % grep "Wc," **/Makefile.am
    cxxtools-1.4.3.5/Makefile.am:AM_CXXFLAGS=-Wc,-xinstrument=datarace
    cxxtools-1.4.3.5/src/Makefile.am:libcxxtools_la_CXXFLAGS = -Wc,-xinstrument=datarace
    tntnet-1.5.3.4/framework/cgi/Makefile.am:libtntnet_cgi_la_CXXFLAGS = -Wc,-xinstrument=datarace
    tntnet-1.5.3.4/framework/common/Makefile.am:libtntnet_la_CXXFLAGS = -Wc,-xinstrument=datarace
    tntnet-1.5.3.4/framework/defcomp/Makefile.am:tntnet_la_CXXFLAGS = -Wc,-xinstrument=datarace
    tntnet-1.5.3.4/sdk/tools/common/Makefile.am:libtntnet_sdk_la_CXXFLAGS = -Wc,-xinstrument=datarace
    This is because libtools removes all compiler options it does not know
    about unless they are prefixed with -Wc.
    6. Set env vars:
    % env | egrep "(CC|FLAGS)"
    CXXFLAGS=-g -mt -xinstrument=datarace
    CXX=CC
    CC=cc
    CXXCPP=CC -E
    CPPFLAGS=-I/usr/sfw/include -I/where_you_want_it/tntnet/cxxtools-1.4.3.5/include
    LDFLAGS=-g -mt -xinstrument=datarace -L/usr/sfw/lib
    7. In cxxtools-1.4.3.5:
    autoreconf install force
    ./configure --prefix=/where_you_want_it/tntnet
    make
    8. As root:
    make install
    9. Set PATH to include /where_you_want_it/tntnet/bin
    10. Install openssl (its on SunFreeware.com)
    11. In tntnet-1.5.3.4:
    autoreconf install force
    ./configure prefix=/where_you_want_it/tntnet with-ssl=openssl
    make
    12. As root:
    make install
    13. Follow the instructions to build and run the first example in:
    http://www.tntnet.org/download/tntnet-1.5.3/doc/quick-start-guide.pdf
    Of course you need to tweak the Makefile:
    % diff -wc myfirstproject/orig/Makefile myfirstproject/Makefile
    *** myfirstproject/orig/Makefile Sat Apr 7 13:24:41 2007
    --- myfirstproject/Makefile Thu Apr 26 22:34:11 2007
    *** 3,10 ****
    SUFFIXES=.ecpp .gif .jpg .css .js
    ECPPC=ecppc
    ! CXXFLAGS+=-I/where_you_want_it/tntnet/include -fPIC -O2
    ! LDFLAGS+=-shared -L/where_you_want_it/tntnet/lib -ltntnet
    %.cpp: %.ecpp
    $(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CPP) $<
    --- 3,10 ----
    SUFFIXES=.ecpp .gif .jpg .css .js
    ECPPC=ecppc
    ! CXXFLAGS+=-I/where_you_want_it/tntnet/include -KPIC -O2 -mt -xinstrument=datarace
    ! LDFLAGS+=-G -mt -L/where_you_want_it/tntnet/lib -ltntnet
    %.cpp: %.ecpp
    $(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CPP) $<
    Thanks, Mark

    Hello Xi,
    The error:
    ld.so.1: ecppc: fatal: thread: open failed: No such file or directory
    ld.so.1: ecppc: fatal: thread: audit initialization failure: disabled
    occurs because the gcc -pthread option is not recognized by Sun CC,
    so it passes it to the linker, which interprets it as specifying thread
    as an audit library (with the -p ld option). Which can be verified by
    running dump -Lv on the executable, and on the shared libraries
    that were built that the executable depends on.
    The -lpthread option is probably harmless, but not necessary as
    it should instead use the -mt option.
    The changes to the Makefile.am files take effect after the commands
    in steps 7 and 11.
    The collect -races encountered the assertion:
    % collect -r races tntnet -c tntnet.conf
    WARNING: Target `tntnet' is not instrumented for datarace detection;
    reported datarace data may be misleading
    Creating experiment database tha.1.er ...
    2007-05-01 00:17:08.45017 [796.1] INFO tntnet.tntnet - create 5 worker threads
    RDT_assertion failed: 0, file ../src/rde/lockset.c, line 493
    The collect -r deadlock seems to work. So I tried running a
    test that I would like to run the collect -r races with, using a
    script:
    #!/bin/ksh
    /usr/apache2/bin/ab -n 100000 -c 30 http://10.148.1.102:8000/myfirstproject
    It looked like that would take a long time with that may repeats, I might
    need to use a smaller experiment. The initial truncated output is:
    % collect -r deadlock tntnet -c tntnet.conf
    Creating experiment database tha.2.er ...
    2007-05-01 00:17:45.57069 [939.1] INFO tntnet.tntnet - create 5 worker threads
    2007-05-01 00:21:54.75722 [939.2] INFO tntnet.worker - process request: GET /myfirstproject from client 10.148.1.102 user-Agent "Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.7) Gecko/20060629"
    2007-05-01 00:21:54.84579 [939.2] INFO tntnet.comploader - load library "myfirstproject"
    2007-05-01 00:21:54.99394 [939.2] INFO tntnet.worker - request ready, returncode 200 - ContentSize: 124
    2007-05-01 00:23:10.26068 [939.6] INFO tntnet.worker - process request: GET /myfirstproject from client 10.148.1.102 user-Agent "ApacheBench/2.0.41-dev"
    2007-05-01 00:23:10.36622 [939.2] INFO tntnet.worker - process request: GET /myfirstproject from client 10.148.1.102 user-Agent "ApacheBench/2.0.41-dev"
    2007-05-01 00:23:10.41058 [939.4] INFO tntnet.worker - process request: GET /myfirstproject from client 10.148.1.102 user-Agent "ApacheBench/2.0.41-dev"
    2007-05-01 00:23:10.46237 [939.2] INFO tntnet.worker - request ready, returncode 200 - ContentSize: 124
    2007-05-01 00:23:10.52218 [939.4] INFO tntnet.worker - request ready, returncode 200 - ContentSize: 124
    2007-05-01 00:23:10.58946 [939.6] INFO tntnet.worker - request ready, returncode 200 - ContentSize: 124
    Thanks very much for looking at this.
    Regards, Mark

  • Good morning, I have the following problem. I can not start Adobe Muse on my computer because I get a box Assertion Failed in file "... \ src \ ape \ DOMFontProvider.cpp" at line 482: numFontadded = = 1  Doregisterfont fail to add font. Check museapp \ he

    Good morning, I have the following problem. I can not start Adobe Muse on my computer because I get a box Assertion Failed in file "... \ src \ ape \ DOMFontProvider.cpp" at line 482: numFontadded = = 1
    Doregisterfont fail to add font. Check museapp \ hello \ resources for missing files

    Are you still facing the same issue ? if yes then please post the screenshot of exact error and few details such as if you are getting this error while opening a specific file or on double click on Muse itself ?
    Thanks,
    Sanjit

  • "attempting to copy to the disk C:\ failed. the file name was invalid or...

    "attempting to copy to the disk C:\ failed. the file name was invalid or too long." This was the message that I keep getting after trying to "add folder to library" of multiple tracks from an external hard drive. it only happens after a certain period of time.. i get about half of my tracks added before this message pops up. when i first got my i pod it worked fine. but after i hooked up my i pod several times without having that external drive on... the i pod took over that drive letter that my external drive used to use. so.. when i turned on my external drive, it was given a new letter.. then i tunes would not recognize those 1500 tracks that came from my external drive (explanation points listed next to tracks). so.. I deleted all of those files manually, then tried to add folder to library again from the new letter coordinating to my external hd. I kept getting that message above. after that i deleted all files associated with i tunes.. and uninstalled i tunes.. then did a reinstall.. did i tunes update from site... and tried to just add the set of tracks from that external hd... still same **** error. only now.. after i say ok to error... i tunes continues for like 2 seconds.. then has to shut down... ****!!! can anyone help me with this... anyone?

    just to update my problem... I finally figured out that i had to disable the "copy to my itunes folder from my library option. just so you know. apparently i tunes cant handle the large transfer to itunes and also at the same time copy it to your itunes folder... APPLE fix this!!!!!! this suxxxxx....

  • ConfigurationException during deploy "CONFIGURATION FAILED! File not found"

    Hello All,
    The deployment of my adf app. is failing with the following error. Although till yesterday also, it was failing but atleast it was going much farther than this. What is causing this error? I did make changes to config.xml but then restored it. Any help is appreciated. This is critical.
    ####<Sep 14, 2011 1:23:36 PM CDT> <Info> <J2EE Deployment SPI> <brksvw379> <AdminServer> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <u00w669> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001ae49> <1316024616200> <BEA-260121> <Initiating deploy operation for application, myProject [archive: F:\Oracle\Middleware\user_projects\domains\BPEL_DEV\servers\AdminServer\upload\myProject.ear], to AdminServer .>
    ####<Sep 14, 2011 1:23:47 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <u00w669> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001ae49> <1316024627386> <BEA-149038> *<Initiating Task for myProject : [Deployer:149026]deploy application myProject on AdminServer.>*
    ####<Sep 14, 2011 1:23:50 PM CDT> <Info> <J2EE> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001ae5c> <1316024630053> <BEA-160170> <Imported library Extension-Name: adf.oracle.domain, Specification-Version: 1, Implementation-Version: 11.1.1.2.0 for Application myProject>
    ####<Sep 14, 2011 1:23:50 PM CDT> <Info> <WorkManager> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001ae5c> <1316024630069> <BEA-002903> <Creating WorkManager from "wm/SOAWorkManager" WorkManagerMBean for application "myProject">
    ####<Sep 14, 2011 1:23:50 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001ae5c> <1316024630272> <BEA-149059> <Module weblogic.xml.registry.XMLModule of application myProject is transitioning from STATE_NEW to STATE_PREPARED on server AdminServer.>
    ####<Sep 14, 2011 1:23:50 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001ae5c> <1316024630272> <BEA-149060> <Module weblogic.xml.registry.XMLModule of application myProject successfully transitioned from STATE_NEW to STATE_PREPARED on server AdminServer.>
    ####<Sep 14, 2011 1:23:50 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001ae5c> <1316024630272> <BEA-149059> <Module empty.jar of application myProject is transitioning from STATE_NEW to STATE_PREPARED on server AdminServer.>
    ####<Sep 14, 2011 1:23:50 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001ae5c> <1316024630272> <BEA-149060> <Module empty.jar of application myProject successfully transitioned from STATE_NEW to STATE_PREPARED on server AdminServer.>
    ####<Sep 14, 2011 1:23:50 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001ae5c> <1316024630272> <BEA-149059> <Module mySubProj of application myProject is transitioning from STATE_NEW to STATE_PREPARED on server AdminServer.>
    ####<Sep 14, 2011 1:23:50 PM CDT> <Info> <HTTP> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001ae5c> <1316024630771> <BEA-101363> <Application: myProject, WebApp: mySubProj has context-root specified in application.xml: "mySubProj". The context-root specified in weblogic.xml: "mySubProj" will be ignored.>
    ####<Sep 14, 2011 1:24:53 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001ae5c> <1316024693171> <BEA-149060> <Module mySubProj of application myProject successfully transitioned from STATE_NEW to STATE_PREPARED on server AdminServer.>
    ####<Sep 14, 2011 1:24:53 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001aeac> <1316024693312> <BEA-149059> <Module weblogic.xml.registry.XMLModule of application myProject is transitioning from STATE_PREPARED to STATE_ADMIN on server AdminServer.>
    ####<Sep 14, 2011 1:24:53 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001aeac> <1316024693312> <BEA-149060> <Module weblogic.xml.registry.XMLModule of application myProject successfully transitioned from STATE_PREPARED to STATE_ADMIN on server AdminServer.>
    ####<Sep 14, 2011 1:24:53 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001aeac> <1316024693312> <BEA-149059> <Module empty.jar of application myProject is transitioning from STATE_PREPARED to STATE_ADMIN on server AdminServer.>
    ####<Sep 14, 2011 1:24:53 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001aeac> <1316024693312> <BEA-149060> <Module empty.jar of application myProject successfully transitioned from STATE_PREPARED to STATE_ADMIN on server AdminServer.>
    ####<Sep 14, 2011 1:24:53 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001aeac> <1316024693312> <BEA-149059> <Module mySubProj of application myProject is transitioning from STATE_PREPARED to STATE_ADMIN on server AdminServer.>
    ####<Sep 14, 2011 1:24:53 PM CDT> <Info> <Deployer> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001aeac> <1316024693312> <BEA-149060> <Module mySubProj of application myProject successfully transitioned from STATE_PREPARED to STATE_ADMIN on server AdminServer.>
    ####<Sep 14, 2011 1:24:54 PM CDT> <Warning> <HTTP> <brksvw379> <AdminServer> <[STANDBY] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <a01b3820e693e909:-2d9cadd5:132642becba:-8000-000000000001aeac> <1316024694451> <BEA-101162> *<User defined listener com.sun.faces.config.ConfigureListener failed: java.lang.RuntimeException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! File not found.*
    java.lang.RuntimeException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! File not found
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:294)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:485)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:637)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:164)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:69)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused By: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! File not found
         at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:357)
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:227)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:485)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:637)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:164)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:69)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused By: java.io.FileNotFoundException: File not found
    at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:117)
         at java.util.jar.JarFile.<init>(JarFile.java:135)
         at java.util.jar.JarFile.<init>(JarFile.java:72)
         at com.sun.faces.facelets.util.Classpath.getAlternativeJarFile(Classpath.java:262)
         at com.sun.faces.facelets.util.Classpath.search(Classpath.java:115)
         at com.sun.faces.facelets.util.Classpath.search(Classpath.java:92)
         at com.sun.faces.config.configprovider.MetaInfFacesConfigResourceProvider.loadURLs(MetaInfFacesConfigResourceProvider.java:159)     
    at com.sun.faces.config.configprovider.MetaInfFacesConfigResourceProvider.getResources(MetaInfFacesConfigResourceProvider.java:107)
         at com.sun.faces.config.ConfigManager$URLTask.call(ConfigManager.java:1096)
         at com.sun.faces.config.ConfigManager$URLTask.call(ConfigManager.java:1064)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
         at java.util.concurrent.FutureTask.run(FutureTask.java:138)
         at com.sun.faces.config.ConfigManager.getConfigDocuments(ConfigManager.java:642)
         at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:309)
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:226)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >
    I did some more research and found out that method loadURLs of class MetaInfFacesConfigResourceProvider.java is throwing IOException. Is this some kind of class path issue? Please help!
    private Collection<URL> loadURLs(ServletContext context) throws IOException {
    154
    155 Set<URL> urls = new HashSet<URL>();
    156 for (Enumeration<URL> e = Util.getCurrentLoader(this).getResources(META_INF_RESOURCES); e.hasMoreElements();) {
    157 urls.add(e.nextElement());
    158 }
    159 urls.addAll(Arrays.asList(Classpath.search("META-INF/", ".faces-config.xml")));
    160 // special case for finding taglib files in WEB-INF/classes/META-INF
    161 Set paths = context.getResourcePaths(WEB_INF_CLASSES);
    162 if (paths != null) {
    163 for (Object path : paths) {
    164 String p = path.toString();
    165 if (p.endsWith(".taglib.xml")) {
    166 urls.add(context.getResource(p));
    167 }
    168 }
    169 }
    170 return urls;
    171
    172 }
    173
    Edited by: user12054715 on Sep 14, 2011 2:13 PM

    I did a couple of things ( gathered from various posts on OTN). I am not sure which one did the trick but the error is gone now. I am mentioning the steps that I took. Later when I have more time, I will narrow down to exactly what worked.
    1. The following was missing from my web.xml (Thanks Rene!) Added it
    <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>
    2. Removed any mention of 'Anonymous-User' from Jazn-data.xml.
    Application tab -> Secure -> Configure ADF Security -> Jazn-data.xml (source tab and removed block of code referring to anonymous user)
    Hope this will help others.

  • Encoding failed in "file name" with error: -43

    Hi!
    I've tried everything but still, after about 20 hours of encoding DVD Studio Pro just stoppes, saying "encoding failed in "file name" with error: -43". The movie is in DV PAL format and made in Final Cut Pro version 5. I'm using DVD Studio Pro 4.0. The movie is about 1 hour and 30 minutes long and I'm trying to put it on a double layer DVD. I've tried to shorten it (it was nearly 2 hours before), but that didn't help. I also tried to shorten it even more and put it on a single layer DVD, but still the same message.
    So if somebody has any idea of how I can solve this problem, please let me know as soon as possible!
    Thank you!

    Error -43 means "File not found." If you are compressing from a reference movie, make sure that all referenced movie clips are present on the disk and that permission settings are not preventing DVD Studio Pro from accessing them.
    Error -1309 means "Out of bounds." This means that the source file is pretending to be bigger than it actually is.
    So it sounds like there are issues with your source movie.
    P.S. Compressor has a much better MPEG-2 encoder and I would recommend using that instead.

  • Verification of signature failed for file - when locally publish big file

    Hi, I try to locally publish a package that is made of a 486 MB file. And I get this error message :
    Verification of signature failed for file : ...
    It works if I try with a smaller file (30~40 MB). So the issue is not related to the certificate. It's just like if there was a 'Timeout' that occurs during the process of publishing. But I can't see what to do to fix this.
    Any advices are welcome.
    David COURTEL
    IT Technician
    Wsus Third-Party Softwares Publishing :
    Wsus Package Publisher

    David, there's a natural filesize limit for publishing CABs of 384MB.
    This
    article from myITForum.com has a PowerShell script that can be used to set the value higher.
    Also, SolarWinds has a
    free tool (useful if PowerShell is not an option) to set this value. In addition, the utility can be run remotely. All it needs is a local API connection. It has built in help, but here's the syntax you'll need:
    /action setmaxcabsize /targetwsusname
    WSUSServerName /targeetwsususessl {YES|NO} /targetwsusport portnumber /maxcabfilesize
    sizeInMB
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Adobe Lens Profile Creator - ERROR (Detect corners failed because file reading errors ocurred)

    1) I have successfully created a lens profile for a Nikon AF Micro Nikkor 40mm 2.8 lens used in a Nikon D5200 Camera. For this I converted the raw .nef files to .DNG first using Adobe's DNG Converter.
    2) When trying to create another lens profile using the EXACT SAME .DNG files as posted in 1), I am no longer able to create a lens profile because of the message "Detect corners failed because file reading errors ocurred". I am also unable to create any other lens profile using different photos.
    3) I have also tried using a fresh install of Adobe Lens Profile Creator in another mac and I get the exact same error.
    4) I AM ABLE to create a lens profile if I use .jpg files (generated from the same raw .nef files as mentioned) but this doesn't help because then the profiles don't show up when trying to open a raw file in Adobe Camera Raw.
    Please help as this is exasperating.
    Thank you.

    Thanks! I had the same error message in Adobe Lens Profile Creator 1.0.4 for OSX and I found the problem to be the letter ö in the folder name for the DNGs. The lens is an old ISCO-Göttingen and the progress stopped at 2% with the mentioned error message. Changed the folder name and now it works!

  • I was Hacked. I also found a suspect file. Can anyone decipher it?

    I know I was hacked by my ex-partner (i was pretty much told so and that I was easy to track down (i.e. my computer) through it's IP address using an old email).
    I also found a unknown file at the top level of my hard drive. I know everything that is at this directory level.
    I opened the file using word and it contained the following:
    DMFRAM -Error( 0): Can't open file: dt05tmp.01 !
    (repeated 5 times)
    Can anyone decipher this?
    I am now really paranoid. I thought I was safe with Apple's built-in Firewall set to maximum security so learning this has caused me a lot of concern.
    I have since purchased and installed NetBarrier and disabled the root user. Any other tips to secure my computer would be greatly appreciated.
    15" Powerbook 1 GHz   Mac OS X (10.4.7)  
    I also would like to check my logs to see if I can spot any unusual activity but i can only see the last three days in the ipfw.log? Can anyone tell me where to find older and/or the logs i should be looking at?
    Thanks in advance

    Having the firewall turned on is only useful against mitigating attacks that target services you don't want/expect to run. It does nothing against protecting against services that you enable. For example, if you're running a web server you presumably want to allow people to hit it, therefore the firewall needs to allow port 80 traffic in. It's not validating that traffic to see whether it's a real request, or whether the web server software you're running contains a vulnerability (like the all-too-common sql-injection common to many discussion boards).
    Even more importantly the firewall doesn't do anything to protect against weak passwords. The chances are your friend knows your name (he is your friend after all), so he has half the keys he needs to get into your machine if you have SSH/Remote Login enabled. Now all he has to do is try different password combinations until one works... pet's name, child's name, zip code, etc. Once he finds a match there's no firewall in the world that's going to stop him poking around your machine, and this is the likeliest cause of any break-ins.
    What can you do about it? not much other than to use really good passwords and to disable any accounts that you don't absolutely need.
    As for the logs, they're rotated and compressed weekly where the last four weeks' logs are /var/log/ipfw.0.gz, /var/log/ipw.1.gz, etc.
    You can use Console.app to view the logs, or decompress them manually at the command line. However, it's unlikely to yield any results if he came in through a door that was unlocked.
    What might be more useful is the system.log or secure.log which will log failed login attempts. I'm betting somewhere there (maybe in one of the .gzipped versions) there's a number of password failures (unless your password is really easy to remember.

  • Can I delete failed save files?

    My overall goal is to take my higher resolution FCPX project and export it as a web playable smaller movie. I tried export movie, but ran into the problem I'm going to ask about. Next up I'll try exporting using Compressor Settings, that'll probably achieve what I want.
    So, as I went through the export movie steps, expecting to see something that would ask me about the dimensions of the movie (it never did ask), I let it go ahead and do its thing. After clicking Save I just saw the cursor spinning, so I went to bed.
    This morning I found that it has filled my drive, and there were 14GBs of High Quality Media files. I had to force quit FCPX.
    Now I have the original project, with a file structure of Final Cut Events/eventname/Original Media, etc, and also Final Cut Projects/New Project/Render Files/Thumbnail Media/ and High Quality Media and Peaks Data too.
    Deleting All Render files for the event doesn't remove those files. Is there a built in way to delete the failed-save files, or can I safely manually delete the files? At least the 14GB of high quality ones?

    I believe those folders were made during the export stage, certainly the "New Project" name is what I let it use. The Final Cut Events folders do seem to have the original media, so I'll give it a try deleting the high quality export files.
    Thanks for the encouragement!

  • Pacman - error: failed retrieving file

    Hi.
    I just installed Arch on my new laptop but when I first got to the stage where you need to use pacman for the first time, I got this error:
    error: failed retrieving file
    for all the mirrors I have uncommented in my /etc/pacman.d/mirrorlist with reasons like "Not found", "File unavailable" or "Service not available".
    I've tried several mirrors (all french mirrors and some others) but I got the feeling that it's more coming from my computer.
    I first got this error when I tried to install Xorg, but it's the same when I try with someting else (I tried Firefox for instance). Some packages are downloaded but some aren't and so, I can't install anything.
    I've checked my internet connexion which seems to work since I have 0% loss when I ping something.
    I've also tried pacman -Syy but it didn't fix it.
    So, I'm asking for your help, since I never had any problem at this stage of the installation before.
    And by the way, I'm running on a VAIO laptop with Arch x86_64 installed via network an I used DHCP during the install.
    Thanks

    I don't think so, since I added nothing after installing. Unless there is a firewall in the hardware (I don't know anything about that). My computer is a Vaio VGN-SR and this morning, I was able to install both cpudyn and acpid on the first try.
    And I installed Arch before with the same internet connexion and there was no problem so it must be the computer.

  • Cannot sync pacman; error: failed retrieving file, No address record

    Hello,
    As a heads up, I'm trying not to repost
    I've searched the forums but found nothing, I'll keep looking. I've read the front page news about the mirrorlist and tried using the old mirrorlist file. I've been on #archlinux on IRC. Nothing yet.
    Here is an example of what I see:
    root@dungeon pacman.d # pacman -Sy
    :: Synchronizing package databases...
    error: failed retrieving file 'core.db.tar.gz' from ftp.archlinux.org : No address record
    error: failed to update core (No address record)
    error: failed retrieving file 'extra.db.tar.gz' from ftp.archlinux.org : No address record
    error: failed to update extra (No address record)
    error: failed retrieving file 'community.db.tar.gz' from ftp.archlinux.org : No address record
    error: failed to update community (No address record)
    error: failed to synchronize any databases
    I've commented out all but one of the servers in the mirrorlost file to shorten the output.
    Any ideas?

    Snowman wrote:You are trying to fetch non-official dbs which are not on the Arch Linux  mirrors. Are you using Chakra?  Post your pacman.conf
    no I am using normal Arch, and it was working fine until i updated on tuseday. I am using "yaourt -Syu --aur" to update.
    My actual pacman.conf is (changed automaticly to this within unsuccesfull update yesterday):
    # /etc/pacman.conf
    # See the pacman.conf(5) manpage for option and repository directives
    # GENERAL OPTIONS
    [options]
    # The following paths are commented out with their default values listed.
    # If you wish to use different paths, uncomment and update the paths.
    #RootDir = /
    #DBPath = /var/lib/pacman/
    #CacheDir = /var/cache/pacman/pkg/
    #LogFile = /var/log/pacman.log
    HoldPkg = pacman glibc
    # If upgrades are available for these packages they will be asked for first
    SyncFirst = pacman
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    #XferCommand = /usr/bin/curl -C - %u > %o
    #CleanMethod = KeepInstalled
    Architecture = auto
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg =
    #IgnoreGroup =
    #NoUpgrade =
    #NoExtract =
    # Misc options (all disabled by default)
    #UseSyslog
    #ShowSize
    #UseDelta
    #TotalDownload
    # REPOSITORIES
    # - can be defined here or included from another file
    # - pacman will search repositories in the order defined here
    # - local/custom mirrors can be added here or in separate files
    # - repositories listed first will take precedence when packages
    # have identical names, regardless of version number
    # - URLs will have $repo replaced by the name of the current repo
    # - URLs will have $arch replaced by the name of the architecture
    # Repository entries are of the format:
    # [repo-name]
    # Server = ServerName
    # Include = IncludePath
    # The header [repo-name] is crucial - it must be present and
    # uncommented to enable the repo.
    # The testing repositories are disabled by default. To enable, uncomment the
    # repo name header and Include lines. You can add preferred servers immediately
    # after the header, and they will be used before the default mirrors.
    [core-testing]
    Include = /etc/pacman.d/mirrorlist
    [desktop]
    Include = /etc/pacman.d/mirrorlist
    #[desktop-testing]
    #Include = /etc/pacman.d/mirrorlist
    [platform-testing]
    Include = /etc/pacman.d/mirrorlist
    [apps]
    Include = /etc/pacman.d/mirrorlist
    #[apps-testing]
    #Include = /etc/pacman.d/mirrorlist
    # An example of a custom package repository. See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #Server = file:///home/custompkgs
    NOW I tried the saved pacman.conf (wich worked fine for months) wich is like this
    # /etc/pacman.conf
    # See the pacman.conf(5) manpage for option and repository directives
    # GENERAL OPTIONS
    [options]
    # The following paths are commented out with their default values listed.
    # If you wish to use different paths, uncomment and update the paths.
    #RootDir = /
    #DBPath = /var/lib/pacman/
    #CacheDir = /var/cache/pacman/pkg/
    #LogFile = /var/log/pacman.log
    HoldPkg = pacman glibc
    # If upgrades are available for these packages they will be asked for first
    SyncFirst = pacman
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    #XferCommand = /usr/bin/curl %u > %o
    #CleanMethod = KeepInstalled
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg =
    #IgnoreGroup =
    #NoUpgrade =
    #NoExtract =
    # Misc options (all disabled by default)
    #UseSyslog
    #ShowSize
    #UseDelta
    #TotalDownload
    # REPOSITORIES
    # - can be defined here or included from another file
    # - pacman will search repositories in the order defined here
    # - local/custom mirrors can be added here or in separate files
    # - repositories listed first will take precedence when packages
    # have identical names, regardless of version number
    # - URLs will have $repo replaced by the name of the current repo
    # Repository entries are of the format:
    # [repo-name]
    # Server = ServerName
    # Include = IncludePath
    # The header [repo-name] is crucial - it must be present and
    # uncommented to enable the repo.
    # The testing repositories are disabled by default. To enable, uncomment the
    # repo name header and Include lines. You can add preferred servers immediately
    # after the header, and they will be used before the default mirrors.
    #[testing]
    ## Add your preferred servers here, they will be used first
    #Include = /etc/pacman.d/mirrorlist
    [core]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    [extra]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    #[community-testing]
    ## Add your preferred servers here, they will be used first
    #Include = /etc/pacman.d/mirrorlist
    [community]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    # An example of a custom package repository. See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #Server = file:///home/custompkgs
    #ArchAudio
    # tried and tested packages
    [archaudio-stable]
    Server = http://repos.archaudio.org/stable/x86_64
    #ArchAudio
    # these are..for testing?
    [archaudio-testing]
    Server = http://repos.archaudio.org/testing/x86_64
    #ArchAudio
    # for your pleasure
    [archaudio-experimental]
    Server = http://repos.archaudio.org/experimental/x86_64
    and tried to update with it using pacman, wich doesn't succed also:
    [studio@myhost ~]$ sudo pacman -Syu
    Senha:
    erro: O mirror ftp://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/$arch contém a variável $arch, mas não possui arquitetura definida.
    erro: O mirror ftp://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/$arch contém a variável $arch, mas não possui arquitetura definida.
    erro: O mirror ftp://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/$arch contém a variável $arch, mas não possui arquitetura definida.
    :: Sincronizando a base de dados de pacotes...
    erro: falha ao atualizar core (nenhum servidor configurado para o repositório)
    erro: falha ao atualizar extra (nenhum servidor configurado para o repositório)
    erro: falha ao atualizar community (nenhum servidor configurado para o repositório)
    archaudio-stable está atualizado
    archaudio-testing está atualizado
    archaudio-experimental está atualizado
    :: Iniciando atualização do sistema...
    atenção: bristol: local (0.60.5-1) é mais novo que archaudio-testing (0.40.8-1)
    atenção: fil-plugins: local (0.3.0-4) é mais novo que archaudio-testing (0.3.0-3)
    atenção: guitarix: local (0.11.0-1) é mais novo que archaudio-testing (0.06.0-1)
    atenção: kernel26rt: local (2.6.33.7_rt29-1) é mais novo que archaudio-stable (2.6.31_rt10-4)
    atenção: lash: local (0.6.0~rc2-3) é mais novo que archaudio-testing (0.6.0~rc2-1)
    atenção: ll-plugins: local (0.2.1-4) é mais novo que archaudio-testing (0.2.1-3)
    atenção: lv2-c++-tools: local (1.0.3-1) é mais novo que archaudio-testing (1.0.2-1)
    atenção: lv2vocoder: local (1-4) é mais novo que archaudio-testing (1-3)
    atenção: rakarrack: local (0.5.8-1) é mais novo que archaudio-testing (0.4.2-1)
    atenção: rev-plugins: local (0.3.1-3) é mais novo que archaudio-testing (0.3.1-2)
    atenção: swh-lv2: local (1.0.15-3) é mais novo que archaudio-testing (1.0.15-2)
    não há nada a fazer
    [studio@myhost ~]$
    !!!all messages are in portuguese but I think it is possible to understand them, if not i will translate
    EDIT:
    OK, I undestand the last problem and I changed my mirrolist from
    # 2010-08-11 23:15
    # generated by reflector
    # ranked by rankmirrors
    Server = ftp://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/$arch
    Server = ftp://ftp.gtlib.gatech.edu/pub/linux/distributions/archlinux/$repo/os/$arch
    Server = ftp://mirrors.kernel.org/archlinux/$repo/os/$arch
    Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
    Server = http://archlinux.limun.org/$repo/os/$arch
    Server = http://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/$arch
    Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch
    Server = http://www.gtlib.gatech.edu/pub/linux/distributions/archlinux/$repo/os/$arch
    to
    # 2010-08-11 23:15
    # generated by reflector
    # ranked by rankmirrors
    Server = ftp://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/x86_64
    Server = ftp://ftp.gtlib.gatech.edu/pub/linux/distributions/archlinux/$repo/os/x86_64
    Server = ftp://mirrors.kernel.org/archlinux/$repo/os/x86_64
    Server = http://archlinux.c3sl.ufpr.br/$repo/os/x86_64
    Server = http://archlinux.limun.org/$repo/os/x86_64
    Server = http://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/x86_64
    Server = http://mirrors.kernel.org/archlinux/$repo/os/x86_64
    Server = http://www.gtlib.gatech.edu/pub/linux/distributions/archlinux/$repo/os/x86_64
    and now it's working again
    but I don't understand how this all happened
    AND: how can I force reflector to output a correct mirrorlist for 64bit?
    Last edited by capoeira (2010-08-12 15:18:15)

  • Weird system log error: EV_DELETE failed for file watcher

    I just did a clean install of Snow Leopard (erased my hard disk before the installation using Disk Utility). I've run all the updates. I was experiencing some weird delay between the appearance of the blue screen and the appearance of the login window. The delay went away, but when I shutdown or restart, my system log has errors like this:
    an 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 25
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 21
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 20
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 19
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 18
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 16
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 24
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 17
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 23
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 35
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 31
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 30
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 29
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 28
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 26
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 34
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 27
    Jan 4 17:53:54 Musa com.apple.notifyd[11]: EV_DELETE failed for file watcher 33
    Does anyone know what these mean? These do turn up on a Google search, but under systems prior to Snow Leopard! Remember that this is a completely clean system with no third-party software installed yet.

    I get a series of eight EV_DELETE errors when ejecting my external FW800 drive. But not when mounting.
    The drive also has a USB interface which I rarely use since the FW is much faster. I just tried mounting it using USB. Same behavior - no errors on the mount, but 8 EV_DELETE errors when I eject the drive.
    The must be something sketchy with the file structure of the external drive (which is a SuperDuper clone of my internal hard drive).
    SL 10.6.5, MacBook Pro with an external FW800/USB 500 GB drive (WiebeTech enclosure).

  • Console Message: EV_DELETE failed for file watcher

    Hi all,
    MBP 2.5GHz/4GB RAM/250GB HD/10.6.4 with all updates.
    I get the following Console message 8 times, in less than 2 seconds, each time I log out, restart, shut down, start up, log in:
    com.apple.notifyd 12 EV_DELETE failed for file watcher
    Any thoughts on cause or solution?
    Thanks!

    William Boyd, Jr. wrote:
    If you search these discussion groups for "EV_DELETE" (without the quotes), you'll see several threads about it. Unfortunately, there doesn't seem to be a lot of reliable advice about how to prevent it. One thread elsewhere suggested that it can be caused by a hardware problem.
    I've read a lot of them, tried some things, but no luck yet. I'm doubting that it's a hardware issue, based on my previous post, but who knows.
    I tried this
    this error comes from the file_watcher module from notifyd when some permissions are buggy (unknown)
    So check that / and the first level files and folder under / are not unknown. (use 'ls -l / 'command in terminal to check them)
    If they are with bad owner and/or group 'unknown' (or some of them),
    use chown root:wheel my_file to correct them (where myfile is a file with weird owner/group)
    then execute the following in a Terminal window:
    sudo chown root:admin /
    sudo kextcache -system-prelinked-kernel
    sudo kextcache -system-caches
    and while "ls -l /" did find some things, the sudo commands did nothing.
    I also ran across this
    One thing, if you do man kextcache, it says instead of running kextcache you should "run touch(1) on the /System/Library/Extensions/ directory of the installation target volume" which I did instead of running kextcache.
    but I have no idea what this person is trying to say (I'm way out of my league running Terminal commands. All I do is copy and paste what I consider to be promising commands from seemingly knowledgeable and helpful people; sure hoping to run across one or more of them here! ).
    Message was edited by: tjk

  • Cannot publish Flash Updates Verification of file signature failed for file SCUP 2011, SCCM 2012 R2 and WSUS all on same Windows Server 2012 machine

    I am attempting to distribute Adobe Flash updates using SCUP 2011, SCCM 2012 R2, WSUS ver4 and Windows Server 2012.  Everything installs without error.  I have acquired a certificate for SCUP signing from the internal Enterprise CA.  I have
    verified the signing certificate has a 1024 bit key.  I have imported the certificate into the server's Trusted Publishers and Trusted Root CA stores for the computer.  When I attempt to publish a Flash update with Full content I receive the following
    error:
    2015-02-13 23:00:48.724 UTC Error Scup2011.21 Publisher.PublishPackage PublishPackage(): Operation Failed with Error: Verification of file signature failed for file:
    \\SCCM\UpdateServicesPackages\a2aa8ca4-3b96-4ad2-a508-67a6acbd78a4\3f82680a-9028-4048-ba53-85a4b4acfa12_1.cab
    I have redone the certificates three times with no luck.  I can import metadata, but any attempt to download content results in the verification error.
    TIA

    Hi Joyce,
    This is embarrassing, I used that very post as my guide when deploying my certificate templates, but failed to change the bit length to 2048.  Thank you for being my second set of eyes.
    I changed my certificate key bit length to 2048, deleted the old cert from all certificate stores, acquired the a new signing cert, verified the key length was 2048, exported the new cert to pfx and cer files, imported into my Trusted publishers
    and Trusted Root Authorities stores, reconfigured SCUP to use the new pfx file, rebooted the server and attempted to re-publish the updates with the following results:
    2015-02-16 13:35:44.006 UTC Error Scup2011.4 Publisher.PublishPackage PublishPackage(): Operation Failed with Error: Verification of file signature failed for file:
    \\SCCM\UpdateServicesPackages\a2aa8ca4-3b96-4ad2-a508-67a6acbd78a4\3f82680a-9028-4048-ba53-85a4b4acfa12_1.cab.
    Is there a chance this content was already created and signed with the old cert, so installing the new cert has no effect?  In ConfigMgr software updates I see 4 Flash updates, all marked Metadata Only (because they were originally published as "Automatic." 
    No Flash updates in the ConfigMgr console are marked as downloaded.  I can't find any documentation on how the process of using SCUP for downloading content for an update marked Metadata Only actually works. 
    Comments and suggestions welcome.

Maybe you are looking for

  • Service pack 4 on windows 2000 server with  oracle 8.1.7

    Hi, does anyone know if there is any problem installing services pack 4 on windows 2000 server having oracle 8.1.7.? Thanks.

  • Safari extensions not in color

    My Safari browser, toolbar and all icons are grey.  Does anyone know if you can install the Safari Extensions someway in which they appear in color ?  ie;  The Weather Channel, Pinterest, Evernote, etc. I've seen other browsers/toolbars where the ico

  • Exporting PDF text to html

    How can I export PDF text and post the exported text on a web page, to which I can then apply Google Translate?  Our organization post PDF articles from our journal.  (I can manually block and copy the text, so I know the text can be captured.)  I wa

  • IPhoto 08 crashes when viewing photos

    Hi, I'm using iPhoto O8. I have about 4000 photos in the library. I'm using this on an intel iMac. All has been working fine. However, it has now decided to crash if I try to view a photo. The programme will open fine and I can see the thumbnails for

  • Is it possible to add BlueTooth to USB printer

    I have moved my MacBook Pro to a smaller space and would like to have it be able to contact my old USB-only Canon Printer and Canon Scanner via BlueTooth. Are there USB/BlueTooth adapters for peripherals? When I search online I cannot find them - onl