Compiled 2.6.31 no UFS rw

I had been using a custom 2.6.30.5 with UFS rw without any issues. Now that I have compiled the 2.6.31 kernel using my old config and accepting the defaults on all new additions my drive will only mount as ro.
This is the drive's fstab entry:
/dev/sda1               /mnt/alpha      ufs     ufstype=ufs2,rw 0       0
Not sure what other info would be useful.
Martin

Dethredic wrote:
dezza wrote:
kernel, included.
I solved the problem partly.
I got surround to work now - It was simply because my 5.1 surround had to be put on 6ch Direct and unmuted Surround lever which I thought was already unmuted, turned out it wasn't.
Mic is the only problem. I tried out all channels in different combination in Skype. I cannot hear anything, I've tried recording in Audacity with mic and switching back and forth on inputs/outputs, still nothing.
I forget what version of the kernel I am using (I don't update that often) but it is one of the ones with the built in driver. I did get the mic working after some tinkering with the settings. I will add a screenshot when I get home in like an hour.
Thanks I would love that ..

Similar Messages

  • Solaris ufs and filesystemio_options with setall

    I have a quick question about direct i/o and the filesystemio_options parameter, in particular on ufs and Solaris. My understanding is that if we set this to setall (or directio), Oracle will, at its discretion, use direct i/o for file access. However, in the couple of machines I've looked at where I have this parameter set, Oracle is not doing any direct i/o whatsoever (I will explain in a minute how exactly I verify this). I am wondering if anyone has been able to get 10g to do direct i/o on a Solaris box using ufs, with filesystemio_options (as opposed to using the forcedirectio mount option)? I am trying to determine if there is something in my configuration prohibiting this, or if in fact Oracle is explicitly choosing not to use direct i/o for some reason, or if it's a bug.
    There are two ways I can verify no direct i/o is happening in my case.
    1) Via truss:
    [ first flush the buffer cache ]
    [email protected]> alter system flush buffer_cache;
    System altered.
    [ Then issue (as user oracle) ]
    oracle@ironman:~$ truss -f -t open,ioctl -u ':directio' sqlplus user/pass
    ... (lots of output here)
    [ Then type ]
    create table a as select * from big_table;
    You will see that for every data file opened, directio is explicitly turned off:
    24399: open("/u04/oradata/BIA/APM_DATA13.dbf", O_RDWR|O_DSYNC) = 11
    24399: -> libc:directio(0x10f, 0x0, 0x1, 0x0)
    24399: ioctl(271, 0x2000664C, 0x00000000) = 0
    The 3rd parameter to the ioctl() call is 0 for directio_off, and 1 for
    directio_on.
    2) Via the kernel stats. Here is a short snippet of code that will
    function similar to iostat, but for direct i/o activity:
    alive@staind:/tmp/dio/kstat$ cat diomon.c
    #include <stdio.h>
    #include <kstat.h>
    #define DELAY 3
    #define LOOP 1
    int main (int argc, char **argv) {
    kstat_ctl_t *kc;
    kstat_t *ksp;
    u_int delay, i = 0;
    int loop;
    struct ufs_directio_kstats {
    u_int logical_reads;
    u_int phys_reads;
    u_int hole_reads;
    u_int nread;
    u_int logical_writes;
    u_int phys_writes;
    u_int nwritten;
    u_int nflushes;
    } ks1, ks2;
    if (!(kc = kstat_open())) {
    perror("Error on kstat_open()");
    exit(1);
    if (!(ksp = kstat_lookup(kc,
    "ufs directio",
    -1,
    "UFS DirectIO Stats"))) {
    printf("Cannot find \
    [ufs directio:*:UFS DirectIO Stats]\n");
    exit(2);
    if (argc > 1 && (atoi(argv[1]) > 0)) {
    delay = atoi(argv[1]);
    } else
    delay = DELAY;
    if (argc > 2 && (atoi(argv[2]) > 0))
    loop = atoi(argv[2]);
    else if (argc > 1)
    loop = -1;
    else
    loop = LOOP;
    if (kstat_read(kc, ksp, &ks1) == -1) {
    perror("Error in kstat_read()");
    exit(3);
    while (i != loop) {
    if (!(i % 25))
    printf("%10s%10s%10s%10s%10s%10s%10s%10s\n",
    "lreads", "preads", "lwrites", "pwrites",
    "Kread", "Kwrite", "holeread", "nflush");
    sleep(delay);
    if (kstat_read(kc, ksp, &ks2) == -1) {
    perror("Error in kstat_read()");
    exit(3);
    printf("%10u%10u%10u%10u%10u%10u%10u%10u\n",
    ks2.logical_reads - ks1.logical_reads,
    ks2.phys_reads - ks1.phys_reads,
    ks2.logical_writes - ks1.logical_writes,
    ks2.phys_writes - ks1.phys_writes,
    (ks2.nread - ks1.nread) / 1024,
    (ks2.nwritten - ks1.nwritten) / 1024,
    ks2.hole_reads - ks1.hole_reads,
    ks2.nflushes - ks1.nflushes);
    i++;
    ks1 = ks2;
    Compile with:
    gcc -o diomon diomon.c -lkstat
    Run with:
    ./diomon 3
    or similar.
    If there are any non-zero numbers, direct i/o is in fact happening. However in my case, there are none. Keep in mind the kernel level stats are per system, so it is easier to test this if no other directio is happening on the machine (i.e. no partitions mounted with forcedirectio and no programs explicitly using it (none that I know of do by default on Solaris)).
    I have tried doing parallel queries, direct path loads, etc. but did not find any evidence of directio actually happening. Maybe Oracle is really doing "the right thing" and not using it, but I figured some activity may benefit from direct access.
    Any comments are appreciated!

    I have a quick question about direct i/o and the filesystemio_options parameter, in particular on ufs and Solaris. My understanding is that if we set this to setall (or directio), Oracle will, at its discretion, use direct i/o for file access. However, in the couple of machines I've looked at where I have this parameter set, Oracle is not doing any direct i/o whatsoever (I will explain in a minute how exactly I verify this). I am wondering if anyone has been able to get 10g to do direct i/o on a Solaris box using ufs, with filesystemio_options (as opposed to using the forcedirectio mount option)? I am trying to determine if there is something in my configuration prohibiting this, or if in fact Oracle is explicitly choosing not to use direct i/o for some reason, or if it's a bug.
    There are two ways I can verify no direct i/o is happening in my case.
    1) Via truss:
    [ first flush the buffer cache ]
    [email protected]> alter system flush buffer_cache;
    System altered.
    [ Then issue (as user oracle) ]
    oracle@ironman:~$ truss -f -t open,ioctl -u ':directio' sqlplus user/pass
    ... (lots of output here)
    [ Then type ]
    create table a as select * from big_table;
    You will see that for every data file opened, directio is explicitly turned off:
    24399: open("/u04/oradata/BIA/APM_DATA13.dbf", O_RDWR|O_DSYNC) = 11
    24399: -> libc:directio(0x10f, 0x0, 0x1, 0x0)
    24399: ioctl(271, 0x2000664C, 0x00000000) = 0
    The 3rd parameter to the ioctl() call is 0 for directio_off, and 1 for
    directio_on.
    2) Via the kernel stats. Here is a short snippet of code that will
    function similar to iostat, but for direct i/o activity:
    alive@staind:/tmp/dio/kstat$ cat diomon.c
    #include <stdio.h>
    #include <kstat.h>
    #define DELAY 3
    #define LOOP 1
    int main (int argc, char **argv) {
    kstat_ctl_t *kc;
    kstat_t *ksp;
    u_int delay, i = 0;
    int loop;
    struct ufs_directio_kstats {
    u_int logical_reads;
    u_int phys_reads;
    u_int hole_reads;
    u_int nread;
    u_int logical_writes;
    u_int phys_writes;
    u_int nwritten;
    u_int nflushes;
    } ks1, ks2;
    if (!(kc = kstat_open())) {
    perror("Error on kstat_open()");
    exit(1);
    if (!(ksp = kstat_lookup(kc,
    "ufs directio",
    -1,
    "UFS DirectIO Stats"))) {
    printf("Cannot find \
    [ufs directio:*:UFS DirectIO Stats]\n");
    exit(2);
    if (argc > 1 && (atoi(argv[1]) > 0)) {
    delay = atoi(argv[1]);
    } else
    delay = DELAY;
    if (argc > 2 && (atoi(argv[2]) > 0))
    loop = atoi(argv[2]);
    else if (argc > 1)
    loop = -1;
    else
    loop = LOOP;
    if (kstat_read(kc, ksp, &ks1) == -1) {
    perror("Error in kstat_read()");
    exit(3);
    while (i != loop) {
    if (!(i % 25))
    printf("%10s%10s%10s%10s%10s%10s%10s%10s\n",
    "lreads", "preads", "lwrites", "pwrites",
    "Kread", "Kwrite", "holeread", "nflush");
    sleep(delay);
    if (kstat_read(kc, ksp, &ks2) == -1) {
    perror("Error in kstat_read()");
    exit(3);
    printf("%10u%10u%10u%10u%10u%10u%10u%10u\n",
    ks2.logical_reads - ks1.logical_reads,
    ks2.phys_reads - ks1.phys_reads,
    ks2.logical_writes - ks1.logical_writes,
    ks2.phys_writes - ks1.phys_writes,
    (ks2.nread - ks1.nread) / 1024,
    (ks2.nwritten - ks1.nwritten) / 1024,
    ks2.hole_reads - ks1.hole_reads,
    ks2.nflushes - ks1.nflushes);
    i++;
    ks1 = ks2;
    Compile with:
    gcc -o diomon diomon.c -lkstat
    Run with:
    ./diomon 3
    or similar.
    If there are any non-zero numbers, direct i/o is in fact happening. However in my case, there are none. Keep in mind the kernel level stats are per system, so it is easier to test this if no other directio is happening on the machine (i.e. no partitions mounted with forcedirectio and no programs explicitly using it (none that I know of do by default on Solaris)).
    I have tried doing parallel queries, direct path loads, etc. but did not find any evidence of directio actually happening. Maybe Oracle is really doing "the right thing" and not using it, but I figured some activity may benefit from direct access.
    Any comments are appreciated!

  • Ufs file rewriting bug (sol8/9/10)

    I have encountered a problem with the file creation date whe rewriting a file.
    In a C compile project with make, make considered to recompile a test.o file.
    make called the compiler and test.o was rewritten but the file creation date of test.o was NOT updated which drove make into trouble.
    I stripped it down and can reproduce this behavior with following shell:
    #!/bin/sh
    echo "int main(int argc, char ** argv) { return (1); }" >test.c
    CMD="/opt/studio11/SUNWspro/bin/cc -O -c -o test.o test.c"
    # determine filesize if test.o
    $CMD ;
    O_SIZE=`ls -l test.o | awk '{print $5}'`
    # create a file test.o filled with zero - length is length of compiler output
    dd if=/dev/zero of=test.o bs=$O_SIZE count=1
    # set specific date an show
    touch 06060606 test.o
    echo "`ls -l test.o` `md5sum <test.o`"
    # COMPILE and show
    echo $CMD; $CMD
    echo "`ls -l test.o` `md5sum ><test.o`"
    exit
    OUTPUT IS:
    # $ sh doit
    # 1+0 records in
    # 1+0 records out
    # -rw-r--r-- 1 x2k x2k 1720 Jun 6 06:06 test.o 540f34fd91d826aed8a7db434b3e58f2
    # /opt/studio11/SUNWspro/bin/cc -O -c -o test.o test.c
    # -rw-r--r-- 1 x2k x2k 1720 Jun 6 06:06 test.o be306e32076d49268f889e4d95183f39
    System Info:
    Solaris 10 1/06 s10s_u1wos_19a SPARC
    Copyright 2005 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 07 December 2005
    /dev/dsk/c0t1d0s0 /export/home ufs rw,intr,largefiles,logging,xattr,onerror=panic,dev=800080 1158162319
    PKG=SPROcc
    VERSION=11.0,REV=2005.10.13
    PATCH_INFO_12101 5-02=Installed: Fri Jun 16 10:49:43 CEST 2006 From: xxxxxxxxx Obsoletes: Requires: Incompatibles:
    When trussing the cc you see something like:
    # 12538: open("test.o", O_RDWR|O_CREAT, 0666) = 3
    # 12538: fcntl(3, F_GETFD, 0x007CE180) = 0
    # 12538: llseek(3, 0, SEEK_END) = 1720
    # 12538: munmap(0xFF310000, 8192) = 0
    # 12538: munmap(0xFF310000, 8192) = 0
    # 12538: fcntl(3, F_FREESP, 0xFFBFF2F4) = 0
    # 12538: mmap(0x00000000, 1720, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0) = 0xFF310000
    # 12538: memcntl(0xFF310000, 1720, MC_SYNC, MS_SYNC, 0, 0) = 0
    # 12538: munmap(0xFF310000, 1720) = 0
    # 12538: close(3) = 0
    removing logging and largefiles options from mount does not help.
    This behaviour is not seen on NFS, TMPFS, LOFS ..
    I have tried to enter this story into the bug database but cant find any entry up to now.
    What is going wrong with ufs - any ideas?
    Thanks in advance

    Oh, I see. This has nothing to do with 'ctime' or a 'creation date'. It's that the compilation isn't updating the modification time by the compile.
    Seems quite odd. It's not doing a write(), but the blocks getting written to the disk should be updating the mod time.
    Darren

  • Error in compiling Photoshop CC 2014 sample project

    Hi,
    I am trying to compile SDK sample project "outbound". but it is showing errors, as "Parse Issue: Unknown type name 'DialogPtr' " in DialogUtilities.h .
    DialogUtilities.h file is in "Adobe Photoshop CC 2014:photoshopsdk:pluginsdk:samplecode:common:includes".
    even if I add this path in project  settings it still shows the errors.
    how can I make this work?
    I am using Photoshop CC 2014 and Xcode version is 4.6.3 (4H1503)
    If you have any idea regarding project settings then please let me know.
    Thanks and regards,
    Priyanka.

    Are you using the CC 2014 release of the SDK?
    The DialogUtilities.h for mac do not work. They are the old Carbon API's. See the Dissolve example for an Objective-C UI.
    I would comment out the DialogUtilities.h include and other associated headers for Carbon UI. Some Carbon calls still work that are unrelated to UI.

  • Compilations: Can you show just one album cover with mixes/compiations?

    Using the current iTunes (11.01) is a misery. I have numerous mix discs and compilations, and for each title eg Royksopp's BACK TO MINE mix, there are about 15 tiles of the album, one for each song. In extreme cases, there may be over 100. Since I have God knows how many songs, easily in the tens of thousands, this is an extremely inefficient way to display my collection.
    Is there any way to display albums with just the one album cover and title showing each time? THis is ridiculous.
    Thanks in advance.

    Wow!
    Is that really so?
    I'm not questioning your answer. Just want to make sure before I say OK and let it be. I had heard that iTunes/iPod forces you to do things their way, this is an example, I guess!
    Thanks for the input.
    I guess I'll just have to leave it be!
    Is iTunes the only way to deal with iPod? Are there any other programs?
    Bob

  • Error in executing a process for compilation for jsp

    We have an iView which has jsp pages in it. We deployed the par & try toaccess the iview & we get an exception. The issue is that the iview has a jsp page. At the run time, this jsp is converted into a .java file
    without problem. But EP engine is having issues compiling this java fileinto .class file.
    On the other hand this same iview works just fine on our windows installation. Only Solaris EP install is having problems. The version onwindows as well as on Solaris is EP6 SP9.
    Here is the exact version on the solaris EP:
    sap.com/SAP-JEECOR 6.40 SP9 (1000.6.40.9.0.20041119045253) 20041122132733
    sap.com/SAP-JEE 6.40 SP9 (1000.6.40.9.0.20041119045409) 20041122132741
    When I copy the .class file from windows to unix machine, the iView works fine. Here is the exception I am getting:
    >>> JSPCompiler >>> error
    [email protected]a188b
    [EXCEPTION]
    com.sapportals.portal.prt.servlets_jsp.server.compiler.CompilingException:
    Error in executing a process for compilation
    at
    com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.launchCompilerProcess(J2eeCompiler_6_30.java:574)
    at
    com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.compileExternal(J2eeCompiler_6_30.java:370)
    at
    com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.compile(J2eeCompiler_6_30.java:672)
    at
    com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPParser.parse(JSPParser.java:2143)
    at
    com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.compile(JSPCompiler.java:76)
    at
    com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.run(JSPCompiler.java:122)
    at
    com.sapportals.portal.prt.core.broker.JSPComponentItem.compileJSP(JSPComponentItem.java:279)
    at
    com.sapportals.portal.prt.core.broker.JSPComponentItem.getComponentInstance(JSPComponentItem.java:129)
    at
    com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.service(PortalComponentItemFacade.java:355)
    at
    com.sapportals.portal.prt.core.broker.PortalComponentItem.service(PortalComponentItem.java:934)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:435)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:527)
    at
    com.sapportals.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:89)
    at
    com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:232)
    at com.sapportals.portal.htmlb.page.JSPDynPage.doOutput(JSPDynPage.java:76)
    at
    com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:129)
    at
    com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    at
    com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at
    com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at
    com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at
    com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:232)
    at
    com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at
    com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:153)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
    at
    com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at
    com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
    at
    com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
    at
    com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at
    com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    I am having the same issue with another iview which has jsp page in it.
    The web dynpro iview works fine.

    Hi, seems like there's some typo in your jsp. Check the .java file listed with a java editor (like eclipse or devstudio.). Maybe you'll find the typo this way faster.
    Most often, a multiline page import hampers jsp compilation,
    e.g.
    <%@page import="java.util.List,
                    java.util.Map"%>
    needs to be
    <%@page import="java.util.List,java.util.Map"%>
    Regards,
    Armin

  • Error in executing a process for compilation

    Hi:
    Our portal version is 6.0.2.28.0 (SAPJ2EE PL29)
    we have the following problem:
    1.- the developer upload a component in portal, but when he tries to run it, the following error appears:
    Mar 28, 2005 4:22:06 PM # Client_Thread_8      Fatal           >>> JSPCompiler >>> ERROR in Compiling :JSPFileInfo :4782283
    JSP File : /usr/sap/J2EE_DP3/j2ee/j2ee_00/cluster/server/services/servlet_jsp/work/jspTemp/irj/root/WEB-INF/portal/portalapps/PRUEBA
    _PCCLibragestMostrarPlantillas/pagelet/MostrarPlantillas.jsp
    Class Name: sapportalsjspMostrarPlantillas
    Java File : /usr/sap/J2EE_DP3/j2ee/j2ee_00/cluster/server/services/servlet_jsp/work/jspTemp/irj/root/WEB-INF/portal/portalapps/PRUEB
    A_PCCLibragestMostrarPlantillas/work/pagelet/_sapportalsjsp_MostrarPlantillas.java
    Package Name : pagelet
    Class File : /usr/sap/J2EE_DP3/j2ee/j2ee_00/cluster/server/services/servlet_jsp/work/jspTemp/irj/root/WEB-INF/portal/portalapps/PRUE
    BA_PCCLibragestMostrarPlantillas/work/pagelet/_sapportalsjsp_MostrarPlantillas.class
    Is out dated : false
    com.sapportals.portal.prt.servlets_jsp.server.compiler.CompilingException: Error in executing a process for compilation
    2.- If I stop/start SAPJ2EE the component, which was uploaded before,can be run without problem, but if you upload it again,when you try to run it again, the compilation error appears
    Any suggestion???
    Thanks

    Hi:
    the problem was not resolved deleting/uploading the components, the problem was resolved increasing the memory in the host and tuning the JVM memory parameters.
    In our host the memory was reduced and this was the origin of the problem
    Thanks

  • Error in executing a process for Flex compilation ....exceeds 32K...

    Hi,
    deployin my model i get the following error-message.
    "Error in executing a process for Flex compilation, Error: Branch between 64935 and 97770 around line 0 exceeds 32K span. If possible, please refactor this component.
    Error: Branch between 64935 and 97770 around line 0 exceeds 32K span."
    Do i delete a sort-element from my model it is deployed very well. So what does this message exactly mean and how can I locate where the error occurs and how can i fix that problem because i need this sort-element to be in my model.
    Thanks for your help!
    Tobias

    Hi Tobias,
    You are receiving this error due to a current limitation in the Flex server. How you can fix this is to split the iView you are currently working on into two iViews, and embed one within the other. This will decrease the size of the current iView you are receiving the error for and eliminate this problem.
    Hope this helps
    Cheers,
    Scott

  • Compilation error while calling static method from another class

    Hi,
    I am new to Java Programming. I have written two class files Dummy1 and Dummy2.java in the same package Test.
    In Dummy1.java I have declared a static final variable and a static method as you can see it below.
    package Test;
    import java.io.*;
    public class Dummy1
    public static final int var1= 10;
    public static int varDisp(int var2)
    return(var1+var2);
    This is program is compiling fine.
    I have called the static method varDisp from the class Dummy2 and it is as follows
    package Test;
    import java.io.*;
    public class Dummy2
    public int var3=15;
    public int test=0;
    test+=Dummy1.varDisp(var3);
    and when i compile Dummy2.java, there is a compilation error <identifier > expected.
    Please help me in this program.

    public class Dummy2
    public int var3=15;
    public int test=0;
    test+=Dummy1.varDisp(var3);
    }test+=Dummy1.varDisplay(var3);
    must be in a method, it cannot just be out somewhere in the class!

  • Error while compiling forms10g in Unix with webutil features.

    Hi,
    I developed a form called test.fmb and attached webutil.pll. change all text_io to client_text_io.
    Copied the file to unix and tried to compile, it says
    CLIENT_TEXT_IO.FILE_TYPE must be declared.
    (Please note that webutil.pll has been compiled and .plx file is generated).
    Please help.
    Thanks.

    Our Forms_90 Path is
    FORMS90_PATH=/AppsTop/FRMTOP/app/9.0.4/forms90:/AppsTop/FRMTOP/app/9.0.4/pi:/AppsTop/FRMTOP/app/9.0.4/webutil:/AppsTop/FRMTOP/app/9.0.4/webutil/forms
    I just copied webutil.pll from
    :/AppsTop/FRMTOP/app/9.0.4/webutil/forms/webutil.pll to
    my local directory C:\webutil.pll
    I attached the C:\webutil.pll under Attached Libraries in test.fmb in my own PC.
    Please advice.
    Thanks,
    Mano.

  • Grouping compilations no longer works after adding artwork..!

    Until yesterday I had never bothered with adding artwork to my itunes library as I had a gen 3 iPod that would not show it anyway. I have a new ipod so last night I decided to add artwork, this I did by getting what I could from Gracenote, the rest I have been dragging from images on Amazon and other sites. Ever since doing this the Group Compilations option no longer works, despite having this checkbox ticked in preferences and making sure that the yes box for part of a compilation is ticked for these albums. In addition, every song in a compilation album is displayed individually in the Cover Flow view option.
    Is this a peculiarity of 7.2 or is there a way I can get this to work again? I am sure it is something to do with having added artwork as it was working fine before.
    The help menu in itunes seems to have stopped working too now, which doesn't help...obviously!

    Until yesterday I had never bothered with adding artwork to my itunes library as I had a gen 3 iPod that would not show it anyway. I have a new ipod so last night I decided to add artwork, this I did by getting what I could from Gracenote, the rest I have been dragging from images on Amazon and other sites. Ever since doing this the Group Compilations option no longer works, despite having this checkbox ticked in preferences and making sure that the yes box for part of a compilation is ticked for these albums. In addition, every song in a compilation album is displayed individually in the Cover Flow view option.
    Is this a peculiarity of 7.2 or is there a way I can get this to work again? I am sure it is something to do with having added artwork as it was working fine before.
    The help menu in itunes seems to have stopped working too now, which doesn't help...obviously!

  • Compiling Apache 1.3.9 & PHP 3.0.12 to use Oracle 8.1.5 on SuSe 6.2

    Hi!
    I am trying to compile the above packets but am running into massive problems.
    PHP3 compiles well, if i try to use the "normal" static module for Apache, but the Apache configure script says that it needs an ANSI C compiler and stops.
    I am using GCC 2.7.2.3 with the bugfixes from SuSe.
    Since that did not work I tried the configuration as a Dynamic Module. The Apache "Readme.config" explains two ways to do so, but the first has the same problem with GCC and the second (via APXS) compiles Apache without problems, but PHP3 wont compile since it does not find a library. The exact error is: "/usr/i486-linux/bin/ld: cannot open -lclntsh: No such file or directory"
    I found a libclntsh.so.8.0 in the oracle/lib directory, but since i fumbled around with this library (i tried ln -s libclntsh.so.8.0 libclntsh.so) sqlplus says libclntsh.so.8.0: cannot find file data: no such file or directory (even now that the link is deleted again).
    And PHP still wont compile. Any ideas would be welcome.
    P.S.: Is it normal that Oracle has to be told NOT to create a database during install, TO create a database???
    We worked for 3 days on the Oracle installation and that was the only way to install Oracle without errors.
    thx
    Uwe Schurig

    Lee Bennett (guest) wrote:
    :Hi
    :I have successfully installed Oracle 8.1.5 Enterprise edition
    on
    :Suse 6.2 and applied the 8.1.5.0.1 patch set,
    NO!
    SuSe 6.2 have a patch file for Oracle made from their developers.
    Never use Oracle 8.1.5.0.1 patch file that doesn't work because
    us bugged.
    Use SuSe 6.2 Oracle patch set.
    (don't remember the web page where you can download it but a
    search with word "oracle" from SuSe homepage will lead you to
    it)
    -Stefano
    null

  • Compilation problem in solaris 10

    Hi,
    Iam using solaris 10 SUNW,UltraAX-i2. Iam trying to compile tripwire binaries tw_ASR_1.3.1_SRC. Iam using gcc 3.3.2, later I installed the libiconv package.
    on reading the documentation from sunfreeware i modified the file mkheaders.conf putting the line SHELL=/bin/sh in the directory
    usr/local/lib/gcc-lib/sparc-sun-solaris10/3.3.2/install-tools
    The PATH and LD_LIBRAY_PATH are like this
    # echo $PATH
    /usr/local/bin:/etc:/usr/sbin:/usr/bin:/usr/ccs/bin:/usr/ucb:/bin:/sbin/:/usr/sb
    in:/usr/man:/usr/include/
    # echo $LD_LIBRARY_PATH
    /usr/local/lib:/usr/X/lib:/usr/lib:/usr/ucblib:/lib:/usr/ccs/lib:/etc/lib:/usr/d
    t/lib
    Once I changed the configuration changes in the tripwire source. Iam trying to compile make & make install. The output of the make is like this
    # make
    (cd util; make CC=gcc CFLAGS="-O" \
    LDFLAGS="-ldl" CPP="gcc -E" SHELL=/bin/sh all)
    ### Ignore warnings about shift count negative/too large on line 36
    gcc -O -ldl byteorder.c -o byteorder
    byteorder.c: In function `main':
    byteorder.c:36: warning: left shift count >= width of type
    byteorder.c:25: warning: return type of `main' is not `int'
    (./byteorder; cat ./ntohl.h) > ../include/byteorder.h
    gcc -O -ldl types.c -o types
    types.c: In function `main':
    types.c:29: warning: return type of `main' is not `int'
    /bin/sh ./types.sh "gcc -E" > ../include/inode.h
    (cd src; make CC=gcc CFLAGS="-O" LIBS="" \
    LDFLAGS="-ldl" CPP="gcc -E" SHELL=/bin/sh \
    YACC="yacc" LEX="lex" all)
    /bin/sh help.sh help.txt > help.c
    gcc -O -c config.parse.c
    gcc -O -c main.c
    main.c:704:2: warning: no newline at end of file
    gcc -O -c list.c
    gcc -O -c ignorevec.c
    gcc -O -c dbase.build.c
    gcc -O -c utils.c
    gcc -O -c preen.c
    gcc -O -c preen.interp.c
    gcc -O -c preen.report.c
    gcc -O -c nullsig.c
    gcc -O -c config.prim.c
    gcc -O -c dbase.update.c
    lex config.pre.l
    mv lex.yy.c config.lex.c
    yacc config.pre.y
    sed 's/lex\.yy\.c/config.lex.c/' < y.tab.c > config.pre.c
    rm y.tab.c
    gcc -O -c config.pre.c
    gcc -O -c help.c
    (cd ../sigs/md5; make CC="gcc" CFLAGS="-O -I. -I..")
    gcc -O -I. -I.. -c md5.c
    gcc -O -I. -I.. -c md5wrapper.c
    (cd ../sigs/snefru; make CC="gcc" CFLAGS="-O -I. -I..")
    gcc -O -I. -I.. -c snefru.c
    (cd ../sigs/crc32; make CC="gcc" CFLAGS="-O -I. -I..")
    gcc -O -I. -I.. -c crc32.c
    (cd ../sigs/crc; make CC="gcc" CFLAGS="-O -I. -I..")
    gcc -O -I. -I.. -c crc.c
    (cd ../sigs/md4; make CC="gcc" CFLAGS="-O -I. -I..")
    gcc -O -I. -I.. -c md4.c
    gcc -O -I. -I.. -c md4wrapper.c
    (cd ../sigs/md2; make CC="gcc" CFLAGS="-O -I. -I..")
    gcc -O -I. -I.. -c md2wrapper.c
    gcc -O -I. -I.. -c md2.c
    (cd ../sigs/sha; make CC="gcc" CFLAGS="-O -I. -I..")
    gcc -O -I. -I.. -c sha.c
    gcc -O -I. -I.. -c shawrapper.c
    (cd ../sigs/haval; make CC="gcc" CFLAGS="-O -I. -I..")
    gcc -O -I. -I.. -c haval.c
    gcc -O -I. -I.. -c havalwrapper.c
    gcc -O -ldl -o tripwire config.parse.o main.o list.o ignorevec.o dbase.build.o
    utils.o preen.o preen.interp.o preen.report.o nullsig.o config.prim.o dbase.upd
    ate.o config.pre.o help.o ../sigs/md5/md5wrapper.o ../sigs/md5/md5.o ../sigs/s
    nefru/snefru.o ../sigs/crc32/crc32.o ../sigs/crc/crc.o ../sigs/md4/md4.o ../sigs
    /md4/md4wrapper.o ../sigs/md2/md2.o ../sigs/md2/md2wrapper.o ../sigs/sha/sha.o .
    ./sigs/sha/shawrapper.o ../sigs/haval/haval.o ../sigs/haval/havalwrapper.o
    gcc -O -ldl -o siggen siggen.c ../sigs/md5/md5wrapper.o ../sigs/md5/md5.o ../sig
    s/snefru/snefru.o ../sigs/crc32/crc32.o ../sigs/crc/crc.o ../sigs/md4/md4.o ../s
    igs/md4/md4wrapper.o ../sigs/md2/md2.o ../sigs/md2/md2wrapper.o ../sigs/sha/sha.
    o ../sigs/sha/shawrapper.o ../sigs/haval/haval.o ../sigs/haval/havalwrapper.o
    nullsig.o utils.o
    I think it is not showing any problem. But when I try to make install it is throwing some
    error like this. It was unable to find theinsta;; directory under /usr/local/bin. Manually I created the directory to test, it is throwing an error saying that bad file number.
    Can any one help me what could be the reason for this.
    # make install
    (cd util; make CC=gcc CFLAGS="-O" \
    LDFLAGS="-ldl" CPP="gcc -E" SHELL=/bin/sh all)
    (cd src; make CC=gcc CFLAGS="-O" LIBS="" \
    LDFLAGS="-ldl" CPP="gcc -E" SHELL=/bin/sh \
    YACC="yacc" LEX="lex" all)
    /usr/local/bin/install -d /usr/local/bin
    sh: /usr/local/bin/install: not found
    *** Error code 1
    make: Fatal error: Command failed for target `install'
    Sanjeev

    This forum is about using Sun Studio. Your question is about tripwire, which is not a Sun product, and gcc, which is not Sun Studio. I suggest you take your question to a tripwire forum. Check the location where you got tripwire for a support forum.

  • Adobe Media Encoder (Error compiling movie) Unknown error when writing to Isilon OneFS 6.5.5.18

    Adobe Media Encoder (Error compiling movie) Unknown error when writing to Isilon OneFS 6.5.5.18 while using Adobe Premiere Pro.
    Process:         Adobe Premiere Pro CC 2014
    Path: /Applications/Adobe Premiere Pro CC 2014/Adobe Premiere Pro CC 2014.app/Contents/MacOS/Adobe Premiere Pro CC 2014
    Identifier: com.adobe.AdobePremierePro
    Version:         8.1.0 (8.1.0)
    Code Type: X86-64 (Native)
    Parent Process: launchd [2538]
    Responsible:     Adobe Premiere Pro CC 2014
    Date/Time: 2015-01-06 14:04:23.500 -0700
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Crashed Thread: 55  Dispatch queue: com.apple.root.default-priority
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    Customer created test export with 777 permissions and set mount parameters to the following:
    mount_nfs -o vers=3,tcp,rdirplus,intr,nolocks,async,rsize=32768,wsize=32768
      -- Original mount options:
         General mount flags: 0x40 async
         NFS parameters: vers=3,tcp,nolocks,rsize=32768,wsize=32768,rdirplus
      -- Current mount parameters:
         General mount flags: 0x4000058 async,nodev,nosuid multilabel
         NFS parameters: vers=3,tcp,port=2049,nomntudp,hard,nointr,noresvport,negnamecache,callumnt,nolocks,quota, rsize=32768,wsize=32768,readahead=16,dsize=32768,rdirplus,nodumbtimr,timeo=10,maxgroups=16 ,acregmin=5,acregmax=60,acdirmin=5,acdirmax=60,nomutejukebox,nonfc,sec=sys
    The pcap shows once the movie is created a lockup call is responded from Isilon with Error: NFS3ERR_NOENT
    478         V3 CREATE Call (Reply In 479), DH: 0xea5f731c/QBRSN-0-0-1.mov Mode: UNCHECKED
    479         V3 CREATE Reply (Call In 478)
    484         V3 LOOKUP Call (Reply In 485), DH: 0xea5f731c/._QBRSN-0-0-1.mov
    485        V3 LOOKUP Reply (Call In 484) Error: NFS3ERR_NOENT
    V3 LOOKUP Reply (Call In ....) Error: NFS3ERR_NOENT  -   This is by design of OneFS, we coalesce files and then flush them out to disk which is why the commit time is accurate but the file is not immediately available. however when an async option is used within the mount options this should be avoided if writing asynchronously to the cluster.  Has anyone else seen this behavior lately? (current workaround is to store locally and transfer to the cluster via Finder)

    That error can happen for many reasons...one of the reasons that I occassionaly get it is because I try exporting a movie to an external drive that has been formated in the old FAT32 instead of the NTSF standard.  FAT32 only allows for file sizes up to 2 gigs.  And as soon as it reaches that...I would get that error.  I don't know if that is why you are getting that error...but it would be easy to check.  1) are you generating a file that is over 2 gigs?  2) is your drive that you are exporting to FAT 32 (just right click the drive in My Computer and select "properties" then just look for what it says next to "file system".

  • Error in compiling RW libs with g++

    Hi All,
    I am trying to port one project from Solaris (CC) to gcc, which uses RWlibs (of Tools.h++ which comes along with the sunstudio package).
    I am working on RHEL 5.4.
    As a first step i am trying my hand with the following simple program:
    #include <iostream>
    #include <rw/cstring.h>
    int main(){
      RWCString a("TEST Program compiled successfully with gcc");
      std::cout << a << std::endl;
      return 0;
    }when i tried to compile the above sample program i got the following:
    $ g++ -Wall -g rwstring.cc -I/app/sunstudio12/prod/include/CC/rw7
    /app/sunstudio12/prod/include/CC/rw7/rw/generic.h:80: error: ISO C++ forbids declaration of ‘genericerror’ with no type
    /app/sunstudio12/prod/include/CC/rw7/rw/rstream.h:46: error: expected initializer before ‘&’ token
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:378: error: ISO C++ forbids declaration of ‘istream’ with no type
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:378: error: expected ‘;’ before ‘&’ token
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:379: error: ISO C++ forbids declaration of ‘istream’ with no type
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:379: error: expected ‘;’ before ‘&’ token
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:381: error: ISO C++ forbids declaration of ‘istream’ with no type
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:381: error: expected ‘;’ before ‘&’ token
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:382: error: ISO C++ forbids declaration of ‘istream’ with no type
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:382: error: expected ‘;’ before ‘&’ token
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:383: error: ISO C++ forbids declaration of ‘istream’ with no type
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:383: error: expected ‘;’ before ‘&’ token
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:480: error: expected constructor, destructor, or type conversion before ‘&’ token
    /app/sunstudio12/prod/include/CC/rw7/rw/cstring.h:481: error: expected constructor, destructor, or type conversion before ‘&’ tokenAny help/suggestions is appreciated.
    Thanks in advance,
    14341

    RW Tools.h++ is a very old product, which has not had significant updates in many years. Most of the functionality in RW Tools.h++ is available in other libraries, although the programming interface is different. (That is, if you have code written for RW Tools.h++, it will need to be re-written.) You can buy the library from Rogue Wave (roguewave.com) if you want to use it with g++ or other compilers.
    Much of the functionality of RW Tools.h++ is in the C++ Standard library. The Boost libraries are a good addition for anything else that you need.
    The SGI STL and the Apache stdcxx libraries are replacements for the C++ standard library that comes with your C++ compiler. If you download one of these libraries, you will have quite an adventure getting it to build and work correctly with the Studio C++ compiler. But we have already done that work for you. The -library=stlport4 option picks up the STLport version of the SGI STL, and it comes with the compiler. The Apache stdcxx library is available with Solaris 11 for use with Studio C++. Install it in the default locations (in /usr/include and /usr/lib), and use the -library=stdcxx4 option for compiling and linking. Refer to the C++ Users Guide for details about using these alternative libraries.
    For g++, using the SGI STL is not a good idea. You can use Apache stdcxx if you want, but the standard library that comes with g++ is a good one, so I would not recommend replacing it unless you have a specific reason.
    Boost works very well with g++, since it is developed with and tested with g++. Be sure to check your g++ version with any notes about compilers in the version of Boost that you get.

Maybe you are looking for

  • IOS 8.1 Mail is fetching then dropping e-mails

    iPad 2 running IOS 8.1. Last night I notced that a 6 hour chunk of e-mails didn't show up on my iPad. They should've downloaded throughout the day. I use POP3 not IMAP (please let this be). My settings are to fetch every 30 minutes. The same e-mails

  • Digital signature not showing in PDF when opened and printed with Preview

    Not being able to find anything after searching high and low, I thought I would try my luck here: when I certify a PDF file using a visible signature in Adobe Acrobat Professional that signature does not show when I open the file in Preview or print

  • Cannot burn dvd without theme

    I cannot do what would seem to be the simplest step in imovie and idvd. I have created my customize movie in imovie (no canned themes or audio) and when I go to the shre menu and choose idvd so I can burn my movie, I cannot burn a dvd without first c

  • HT4972 can I downgrade iphone 3gs from software version 5.1.1 to 5.0.1?

    can I downgrade iphone 3gs from software version 5.1.1 to 5.0.1? Thanks!

  • Unable to create index due to a data import

    New data was recently imported into a table which was already indexed by Oracle Text (8.1.7). Now, when I try to recreate the index, I get the following error: ERROR at line 1: ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine ORA