JDeveloper Webrunner could not open Mozilla in Linux

Hi,
I have successfully configured JDeveloper9.0.3 in linux(Mandrake7.1). When I tried to run/debug my JSP file in embeded oc4j server then I got the following error:
java.io.IOException: netscape: not found
at java.lang.UNIXProcess.forkAndExec(Native Method)
at java.lang.UNIXProcess.<init>(UNIXProcess.java:139)
at java.lang.Runtime.execInternal(Native Method)
at java.lang.Runtime.exec(Runtime.java:551)
at java.lang.Runtime.exec(Runtime.java:477)
at java.lang.Runtime.exec(Runtime.java:443)
at oracle.ideimpl.webbrowser.BrowserRunner._runBrowserOnWindowsOrUNIX(BrowserRunner.java:172)
at oracle.ideimpl.webbrowser.BrowserRunner._runBrowser(BrowserRunner.java:98)
at oracle.ideimpl.webbrowser.BrowserRunner.runBrowserOnURL(BrowserRunner.java:59)
at oracle.jdeveloper.runner.Oc4jStarter$BrowserThread.run(Oc4jStarter.java:1926)
Please give me some solution.
Regards
Rajarshi Ghosh

By default, it looks for Netscape browser. If you do
have netscape installed on your system, then check if
the PATH is set properly to point to netscape.
If you have another browser, set the confiuration in
JDeveloper so it can locate the correct browser.

Similar Messages

  • OAF : Could not open PDF from Self Service Page or Jdeveloper.

    Hi Friends,
    We are on R12 Applications.
    Appreciate any help.
    Requirement :
    1. Open the PDF from Self Service Page.
    Error :
    Adobe Reader Could Not Open the PDF because it is either not a supported file type or the file is damaged.
    Below is my Controller and AM code
    ======================
    Controller Code
    ==========
    /*===========================================================================+
    | Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA |
    | All rights reserved. |
    +===========================================================================+
    | HISTORY |
    +===========================================================================*/
    package XXX.oracle.apps.ak.xml.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.xml.parser.v2.XMLNode;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.server.OADBTransactionImpl;
    import oracle.apps.xdo.XDOException;
    import oracle.apps.xdo.oa.schema.server.TemplateHelper;
    import oracle.cabo.ui.data.DataObject;
    import oracle.jbo.XMLInterface;
    * Controller for ...
    public class XMLIntegrationCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    public static final int DEPTH = 4;
    public static final int APP_ID = 20003;
    public static final String APP_NAME = "XBOL";
    public static final String TEMPLATE_CODE ="Emp_Template";
    public static final int BUFFER_SIZE = 32000;
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModuleImpl am= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
    am.invokeMethod("initEmpVO");
    am.invokeMethod("getEmpDataXML");
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModuleImpl am= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
    String event = pageContext.getParameter("event");
    System.out.println("XXX : Event "+event);
    if("GenerateReport".equals(event))
    // Get the HttpServletResponse object from the PageContext. The report output is written to HttpServletResponse.
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    try {
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=EmpReport.pdf";
    response.setHeader("Content-Disposition",contentDisposition);
    response.setContentType("application/PDF");
    // Get the Data XML File as the XMLNode
    XMLNode xmlNode = (XMLNode) am.invokeMethod("getEmpDataXML");
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    xmlNode.print(outputStream);
    ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    //Generate the PDF Report.
    TemplateHelper.processTemplate(
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    APP_NAME,
    TEMPLATE_CODE,
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF,
    null,
    pdfFile);
    // Write the PDF Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    catch(Exception e)
    response.setContentType("text/html");
    throw new OAException(e.getMessage(), OAException.ERROR);
    pageContext.setDocumentRendered(true);
    AM CODE
    ======
    package subba.oracle.apps.ak.xml.server;
    import java.io.ByteArrayOutputStream;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.apps.fnd.framework.test.inputscanner.server.EmpVOImpl;
    import oracle.help.common.xml.*;
    import oracle.jbo.XMLInterface;
    import oracle.xml.parser.v2.XMLDocument;
    import oracle.xml.parser.v2.XMLElement;
    import oracle.xml.parser.v2.XMLNode;
    // --- File generated by Oracle ADF Business Components Design Time.
    // --- Custom code may be added to this class.
    // --- Warning: Do not modify method signatures of generated methods.
    public class testXMLAMImpl extends OAApplicationModuleImpl {
    /**This is the default constructor (do not remove)
    public testXMLAMImpl() {
    /**Sample main for debugging Business Components code using the tester.
    public static void main(String[] args) {
    launchTester("XXX.oracle.apps.ak.xml.server", /* package name */
    "testXMLAMLocal" /* Configuration Name */);
    public void initEmpVO()
    EmployeeVOImpl vo = getEmployeeVO1();
    if(vo == null)
    MessageToken errTokens[] = {
    new MessageToken("OBJECT_NAME", "EmployeeVO1")
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", errTokens);
    } else
    vo.executeQuery();
    public void getEmpDataXML()
    try {
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    OAViewObject vo = (OAViewObject)findViewObject("EmployeeVO1");
    ((XMLNode) vo.writeXML(4, XMLInterface.XML_OPT_ALL_ROWS)).print(outputStream);
    System.out.println(outputStream.toString());
    catch(Exception e)
    throw new OAException (e.getMessage());
    /**Container's getter for EmployeeVO1
    public EmployeeVOImpl getEmployeeVO1() {
    return (EmployeeVOImpl)findViewObject("EmployeeVO1");
    }

    Try the OA Framework Forum

  • ORA-01078: failure in processing system parameters LRM-00109: could not open parameter file '/u01/app/oracle/product/11.2.0/dbhome_1/dbs/initORA11G.ora'

    I have installed an Oracle 11gR2 on Oracle Linux Server 6.6 (Virtualbox). I have the users grid and oracle11g. Add groups and install grid infrastructure first as a grid user and install database as oracle user as in documentation successfully.
    I have following users and groups as
    [grid@orcl11g ~]$ id grid
       uid=501(grid) gid=502(oinstall) groups=502(oinstall),492(vboxsf),501(grid),503(dba),505(asmdba),506(asmadmin),507(asmoper)
    [grid@orcl11g ~]$ id oracle11g
       uid=500(oracle11g) gid=502(oinstall) groups=502(oinstall),500(oracle11g),492(vboxsf),503(dba),504(oper),505(asmdba)
    .bash_profile edited  for oracle11g user as
    "export TMP=/tmp
    export ORACLE_HOSTNAME=orcl11g
    export ORACLE_UNQNAME=ora11g
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1
    export ORACLE_SID=ora11g
    export PATH=$PATH:$ORACLE_HOME/bin
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib;
    export CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib;
    .bash_profile edited  for grid user as
    "export TMP=/tmp
    export ORACLE_HOSTNAME=orcl11g
    export ORACLE_UNQNAME=+ASM
    export ORACLE_BASE=/u01/app/grid
    export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/grid
    export GRID_HOME=$ORACLE_BASE/product/11.2.0/grid
    export ORACLE_SID=+ASM
    export PATH=$PATH:$ORACLE_HOME/bin
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib;
    export CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib;
    When I log on as grid user. I check the followings:
    [grid@orcl11g ~]$ crsctl check has
    CRS-4638: Oracle High Availability Services is online
    [grid@orcl11g ~]$ srvctl status database -d ora11g
    Database is running.
    [grid@orcl11g ~]$ sqlplus sys as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Thu Dec 25 19:17:37 2014
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Automatic Storage Management option
    SQL> select status from v$instance;
    STATUS
    STARTED
    Till here everything seems to be OK!!!!
    When I log as  oracle user. I check the followings:
    [oracle11g@orcl11g ~]$ sqlplus sys as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Thu Dec 25 19:21:46 2014
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter password:
    Connected to an idle instance.
    SQL> select status from v$instance;
    select status from v$instance
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    SQL> startup
    ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file '/u01/app/oracle/product/11.2.0/dbhome_1/dbs/initORA11G.ora'
    Also when I log on as a grid user again and use following commands to shutdown and start database again the STATUS of instance is again STARTED not OPEN.
    [grid@orcl11g ~]$ srvctl stop database -d ora11g -o normal
    [grid@orcl11g ~]$ srvctl start database -d ora11g
    And also when I edit /etc/oratab file. I change N to Y for +ASM. But when restart system it seems not changed value is N again.
        +ASM:/u01/app/grid/product/11.2.0/grid:N   # line added by Agent
         ora11g:/u01/app/oracle/product/11.2.0/dbhome_1:Y
    NOW QUESTIONS!!!!!
    1. Why I can't change the status of database to OPEN as grid user?
    2. The status is always STARTED when querying v$instance. İs it status of +ASM or database?
    3. When checking database as grid user it seems to be Database runnning...  If running why it is not in OPEN state? What is running means here?
    4. When I log on as oracle user and query v$instance, then error shown above occured. And also when startup  the database then another error occured as in above. WHY?
    5. When I edit /etc/oratab file manually why second row saved but the first one is changed after restart the system?
    6. Normally, which user have to start, stop or manage database? I think that oracle user is necessary for managing database and the grid user is only for managing ASM and Oracle Restart.
    PLEASE HELP ME TO SOLVE THIS CHAOTİC SİTUATİON!!!
    Thanks,
    DBA_84

    I have installed an Oracle 11gR2 on Oracle Linux Server 6.6 (Virtualbox)
    Pl identify exact version of 11gR2 to 4 decimal places. As noted in your other thread - Failed to start oracle-ohasd, error: Inappropriate ioctl for device ohasd failed to start at roothas.pl - you will need a minimum version of 11.2.0.3 for Linux 6.x - using a lower version may result in unexpected issues or problems.

  • Gerring Error -"Could not open command file"

    Hi All,
    I'm using Business Object Data services XI 4.0 .When I executes the job it given an error -"Could not open command file "
    so if anyone know the solution then please let me know.
    Thanks
    Rajeev kumar
    SAP-BODI Developer

    The -compat=4 (and the default -compat=5) compilation modes are not related to the compiler version. All compiler versions from 5.0 (1998) through 5.10 (2009) have these options. The C++ Migration Guide
    [http://docs.sun.com/app/docs/doc/819-5266]
    explains the differences in detail between -compat=4 and -compat=5, with examples of how to make old code compatible with standard C++.
    There is no compiler version 7. Perhaps you are thinking of the Sun Studio release. There is a Sun Studio 7 (containing C++ 5.4), but it is End Of Life, no longer available for purchase, and is not supported on Solaris 10. The recent releases are these:
    Sun Studio 11, C++ 5.8, supports Solaris 8, 9, 10
    Sun Studio 12, C++ 5.9, supports Solaris 9, 10, Open Solaris, Linux
    Sun Studio 12 update 1, C++ 5.10, supports Solaris 10, Open Solaris, Linux
    (Sun Studio 12 update 1 should be released next week. Watch this forum for an announcement.)
    Please run the command
    CC -V
    to find out your compiler version.
    When compiling on Solaris, 32-bit compilation is the default. You don't get 64-bit compilation unless you ask for it, via the -xarch option on older compilers, or the -m64 option on current compilers.

  • Could not open a connection to host on port 23 : Connect failed

    Hi,
    I am using Oracle Unbrakeable Linux 5, when i try to connect to the server from the client machine using TELNET, i get the following error
    c:/> telnet 192.168.6.184
    Connecting to 192.168.6.184...Could not open a connection to host on port 23 : Connect failed.
    regards,
    Charan

    Hi,
    i did the following but still doesn't work
    # mv /etc/securetty /etc/securetty.bak
    The following is the Hosts file
    =====================
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1     localhost.localdomain     localhost
    192.168.6.184     vision12.dsrc2.com     vision12
    #::1          localhost6.localdomain6     localhost6
    192.168.6.181     prod20.dsrc2.com     prod20
    ============================================================
    When i try to connect to other server using TELNET from this server, i am able to connect. and when i try to connect to this server from other server using TELNET i am able to connect. But, when i try to connect from the CLIENT Machine, i am not able to connect, the client machine is Windows 2000 Professional.
    SERVER to SERVER communication using TELNET is working.
    CLIENT to SERVER communication using TELNET is not working.
    regards,
    Charan

  • Could not open the ICU common library

    Dear all,
    I’ve done heterogeneous OS migration on our Solution Manager system release ver. 7.0 Ehp1, from HP-UX 11.31 to RedHat 6.5. Then we need to perform the system upgrade to version 7.1
    Kernel version is SAP Kernel :  720_EXT_REL.
    Database Client Library : OCI_112, 11.2.0.3.0, V1, default.
    created in  :  Linux GNU SLES-11 x86_64 cc4.3.4 use-pr121116
    ICU Version : 4.0.1 Unicode Version 5.1
    Everything is working fine. EarlyWatch reports are prepared. But when I checked the SLD http://saptst:54000/sld I’ve got the error “Internet
    Explorer cannot display the webpage”. I also checked with IP address and it’s the same error.
    With Chrome browser the error is “Oops! Google Chrome could not connect to saptst:54000”
    I checked the SLDCHECK and got:
    Exchange Infrastructure: Test LCR Connection
    Properties of RFC destination SAPSLDAPI RFC host:
    %%RFCSERVER%%
    program id: SAPSLDAPI_SMP gateway host: saptst
    gateway service: sapgw40
    Testing the RFC connection to
    the SLD java client...
    RFC ping was successful
    SLD server access
    settings:
    host name: saptst
    port number: 54000
    user : SLDAPIUSER
    Use transaction SLDAPICUST if you wish to maintain the SLD server access data
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Calling function
    LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code 3
    => Check whether the SLD is running!
    Summary: Connection to SLD does not work
    => Check SLD function and configurations
    SAPSLDAPI RFC is working fine.
    But on the putty connection with the server I’ve got “Unknown function module: Function SLDJAVA_ACCESSOR_REQUEST not found”.
    I’ve checked the std_server0.out file in the work directory:
    Could not open the ICU common library. The following files must be in the path described by the environment variable
    "LD_LIBRARY_PATH":
    libicuuc.so.30, libicudata.so.30, libicui18n.so.30
    [nlsui0_mt.c 1620] pid = 3079
    LD_LIBRARY_PATH is well set in environment of the smpadm user.
    The RFC libraries in the /sapmnt/SMP/exe, /usr/sap/SMP/SYS/exe/run, /usr/sap/SMP/SCS01/exe
    and also in /usr/sap/SMP/DVEBMG40/exe are
    libicudata.so.34
    libicudata.so.40
    libicudecnumber.so
    libicui18n.so.34
    libicui18n.so.40
    libicuuc.so.34
    libicuuc.so.40
    There is no libicuuc.so.30, libicudata.so.30, libicui18n.so.30.
    I’ve also downloaded the last kernel patches, unpacked and checked the RFC libraries, but there were no libicuuc.so.30… with number 30.
    Why the system is searching for these libraries with 30, but not 34 or 40?
    Can you please help how to solve the error “Could not open the ICU common library”?
    Is this the problem why I can’t open the browser http://saptst:54000/sld and I got the error “Internet Explorer cannot display the webpage”?
    Thank you in advance.
    Best regards,
    Ruzica

    Dear all,
    I've tried to deployed Java with:
    SAPJEE10P_5-10003469.SCA
    SAPJEECOR10P_19-10003466.SCA
    SAPJTECHF10P_21-10003468.SCA,
    but the file for the SAPJTECHS, SAPJTECHS10P_26-10003467.SCA finished with the
    error again for "Could not open the ICU common library.
    The following files must be in the path described by
    the environment variable
    "LD_LIBRARY_PATH":
    libicuuc.so.30, libicudata.so.30, libicui18n.so.30
    The deployment failed with the following error:
    Starting Deployment of SQLTrace
    The SDM will now start SAP Web AS Java instance processes in order to perform online
    deployment. After that the deployment will proceed.
    It could take some time, so please be patient.
    Aborted:
    development component 'SQLTrace'/'sap.com'/'SAP AG'/'7.0010.20061103144726.0000'/'0', grouped by :SDM could not start the J2EE cluster on the host saptst! The online deployment is terminated. A timeout occured during the cluster running verification. (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).STARTUP_CLUSTER)
    Deployment of SQLTrace finished with Error (Duration 1801206 ms)
    Starting Deployment of SAP_JTECHS
    Aborted:
    software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.10.26.20121031152700''/'0':Failed deployment of SDAs:development
    component 'SQLTrace'/'sap.com'/'SAP AG'/'7.0010.20061103144726.0000'/'0' :
    aborted
    Please, look at error logs above for more information!
    Deployment of SAP_JTECHS finished with Error (Duration 918 ms)
    I've tried:
    #cd /usr/sap/SMP/DVEBMGS40/SDM/program/
    #./StopServer.sh
    #./sdm.sh jstartup mode=standalone
    #./sdm.sh j2eeenginestartstop timeoutmillisec=1800000
    #./sdm.sh jstartup mode=integrated
    #./StartServer.sh
    But still the error "SDM could not start the J2EE cluster on the host saptst" appeared again.
    Can you please advice what should I do to deploy the SAPJTECHS10P_26-10003467.SCA ?
    Thank you in advance,
    BR,
    Ruzica

  • [SOLVED] Pacman - could not open file

    After being forced to downgrade my firmware in this thread I get the following error in pacman...
    :: Starting full system upgrade...
    resolving dependencies...
    [b]error: could not open file /var/lib/pacman/local/linux-firmware-20120227-2/desc: No such file or directory[/b]
    looking for inter-conflicts...
    Any idea how I stop this?
    Last edited by Swarfega (2012-05-17 09:03:10)

    Yeah thanks.  Just done that and get the following
    [root@xv5-ln01 andrewp]# pacman -S linux-firmware
    warning: linux-firmware-20120227-2 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    error: could not open file /var/lib/pacman/local/linux-firmware-20120227-2/desc: No such file or directory
    Targets (1): linux-firmware-20120227-2
    Total Installed Size: 38.73 MiB
    Proceed with installation? [Y/n] y
    (1/1) checking package integrity [###########################################################################] 100%
    (1/1) loading package files [###########################################################################] 100%
    (1/1) checking for file conflicts [###########################################################################] 100%
    error: failed to commit transaction (conflicting files)
    linux-firmware: /usr/lib/firmware/GPL-3 exists in filesystem
    linux-firmware: /usr/lib/firmware/TDA7706_OM_v2.5.1_boot.txt exists in filesystem
    linux-firmware: /usr/lib/firmware/TDA7706_OM_v3.0.2_boot.txt exists in filesystem
    linux-firmware: /usr/lib/firmware/agere_ap_fw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/agere_sta_fw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ar7010.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ar7010_1_1.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ar9170-1.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ar9170-2.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ar9271.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ath3k-1.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/atmsar11.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/bnx2x-e1-4.8.53.0.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/bnx2x-e1-5.2.13.0.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/bnx2x-e1-5.2.7.0.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/bnx2x-e1h-4.8.53.0.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/bnx2x-e1h-5.2.13.0.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/bnx2x-e1h-5.2.7.0.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/dvb-fe-xc5000-1.6.114.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/dvb-usb-dib0700-1.20.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/dvb-usb-terratec-h5-drxk.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/emi62/bitstream.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/emi62/loader.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/emi62/midi.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ene-ub6250/ms_init.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ene-ub6250/ms_rdwr.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ene-ub6250/msp_rdwr.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ene-ub6250/sd_init1.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ene-ub6250/sd_init2.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ene-ub6250/sd_rdwr.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ess/maestro3_assp_kernel.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ess/maestro3_assp_minisrc.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/f2255usb.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/htc_7010.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/htc_9271.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/i2400m-fw-usb-1.4.sbcf exists in filesystem
    linux-firmware: /usr/lib/firmware/i2400m-fw-usb-1.5.sbcf exists in filesystem
    linux-firmware: /usr/lib/firmware/i6050-fw-usb-1.5.sbcf exists in filesystem
    linux-firmware: /usr/lib/firmware/intelliport2.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/isci/Makefile exists in filesystem
    linux-firmware: /usr/lib/firmware/isci/README exists in filesystem
    linux-firmware: /usr/lib/firmware/isci/create_fw.c exists in filesystem
    linux-firmware: /usr/lib/firmware/isci/create_fw.h exists in filesystem
    linux-firmware: /usr/lib/firmware/isci/isci_firmware.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/isci/probe_roms.h exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-100-5.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-1000-3.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-1000-5.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-105-6.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-135-6.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-2000-6.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-2030-6.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-3945-2.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-4965-2.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-5000-1.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-5000-2.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-5000-5.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-5150-2.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-6000-4.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-6000g2a-5.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-6000g2b-5.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-6000g2b-6.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-6050-4.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/iwlwifi-6050-5.ucode exists in filesystem
    linux-firmware: /usr/lib/firmware/kaweth/new_code.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/kaweth/new_code_fix.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/kaweth/trigger_code.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/kaweth/trigger_code_fix.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/mpr.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/usa18x.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/usa19.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/usa19qi.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/usa19qw.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/usa19w.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/usa28.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/usa28x.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/usa28xa.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/usa28xb.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/usa49w.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan/usa49wlc.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan_pda/Makefile exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan_pda/keyspan_pda.S exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan_pda/keyspan_pda.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan_pda/xircom_pgs.S exists in filesystem
    linux-firmware: /usr/lib/firmware/keyspan_pda/xircom_pgs.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/korg/k1212.dsp exists in filesystem
    linux-firmware: /usr/lib/firmware/lbtf_usb.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/lgs8g75.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/cf8381.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/cf8381_helper.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/cf8385.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/cf8385_helper.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/gspi8682.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/gspi8682_helper.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/gspi8686_v9.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/gspi8686_v9_helper.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/gspi8688.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/gspi8688_helper.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/lbtf_sdio.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/sd8385.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/sd8385_helper.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/sd8682.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/sd8682_helper.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/sd8686_v8.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/sd8686_v8_helper.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/sd8686_v9.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/sd8686_v9_helper.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/sd8688.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/sd8688_helper.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/usb8388_olpc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/usb8388_v5.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/usb8388_v9.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/libertas/usb8682.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/matrox/g200_warp.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/matrox/g400_warp.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mrvl/sd8787_uapsta.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/mts_cdma.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mts_edge.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mts_gsm.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mts_mt9234mu.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mts_mt9234zba.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mwl8335_duplex.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mwl8k/fmimage_8366.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mwl8k/fmimage_8366_ap-1.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mwl8k/fmimage_8366_ap-2.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mwl8k/fmimage_8687.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mwl8k/helper_8366.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/mwl8k/helper_8687.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/myri10ge_eth_z8e.dat exists in filesystem
    linux-firmware: /usr/lib/firmware/myri10ge_ethp_z8e.dat exists in filesystem
    linux-firmware: /usr/lib/firmware/myri10ge_rss_eth_z8e.dat exists in filesystem
    linux-firmware: /usr/lib/firmware/myri10ge_rss_ethp_z8e.dat exists in filesystem
    linux-firmware: /usr/lib/firmware/myricom/lanai.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ositech/Xilinx7OD.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/phanfw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ql2100_fw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ql2200_fw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ql2300_fw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ql2322_fw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ql2400_fw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ql2500_fw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/qlogic/1040.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/qlogic/12160.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/qlogic/1280.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/qlogic/isp1000.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/qlogic/sd7220.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/r128/r128_cce.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/BARTS_mc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/BARTS_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/BARTS_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/BTC_rlc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CAICOS_mc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CAICOS_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CAICOS_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CAYMAN_mc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CAYMAN_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CAYMAN_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CAYMAN_rlc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CEDAR_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CEDAR_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CEDAR_rlc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CYPRESS_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CYPRESS_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/CYPRESS_rlc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/JUNIPER_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/JUNIPER_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/JUNIPER_rlc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/PALM_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/PALM_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/R100_cp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/R200_cp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/R300_cp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/R420_cp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/R520_cp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/R600_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/R600_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/R600_rlc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/R700_rlc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/REDWOOD_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/REDWOOD_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/REDWOOD_rlc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RS600_cp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RS690_cp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RS780_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RS780_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV610_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV610_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV620_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV620_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV630_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV630_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV635_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV635_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV670_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV670_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV710_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV710_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV730_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV730_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV770_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/RV770_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/SUMO2_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/SUMO2_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/SUMO_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/SUMO_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/SUMO_rlc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/TURKS_mc.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/TURKS_me.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/radeon/TURKS_pfp.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rt2561.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rt2561s.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rt2661.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rt2860.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rt2870.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rt3070.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rt3071.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rt3090.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rt73.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rtl_nic/rtl8105e-1.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/rtl_nic/rtl8168d-1.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/rtl_nic/rtl8168d-2.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/rtl_nic/rtl8168e-1.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/rtl_nic/rtl8168e-2.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/rtl_nic/rtl8168e-3.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/rtl_nic/rtl8168f-1.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/rtl_nic/rtl8168f-2.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/rtl_nic/rtl8402-1.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/rtl_nic/rtl8411-1.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/rtlwifi/rtl8192cfw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rtlwifi/rtl8192cufw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rtlwifi/rtl8192defw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rtlwifi/rtl8192sefw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/rtlwifi/rtl8712u.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/s2250.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/s2250_loader.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/sb16/alaw_main.csp exists in filesystem
    linux-firmware: /usr/lib/firmware/sb16/ima_adpcm_capture.csp exists in filesystem
    linux-firmware: /usr/lib/firmware/sb16/ima_adpcm_init.csp exists in filesystem
    linux-firmware: /usr/lib/firmware/sb16/ima_adpcm_playback.csp exists in filesystem
    linux-firmware: /usr/lib/firmware/sb16/mulaw_main.csp exists in filesystem
    linux-firmware: /usr/lib/firmware/slicoss/gbdownload.sys exists in filesystem
    linux-firmware: /usr/lib/firmware/slicoss/gbrcvucode.sys exists in filesystem
    linux-firmware: /usr/lib/firmware/slicoss/oasisdbgdownload.sys exists in filesystem
    linux-firmware: /usr/lib/firmware/slicoss/oasisdownload.sys exists in filesystem
    linux-firmware: /usr/lib/firmware/slicoss/oasisrcvucode.sys exists in filesystem
    linux-firmware: /usr/lib/firmware/sun/cassini.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/sxg/saharadbgdownloadB.sys exists in filesystem
    linux-firmware: /usr/lib/firmware/sxg/saharadownloadB.sys exists in filesystem
    linux-firmware: /usr/lib/firmware/tehuti/bdx.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/TIInit_7.2.31.bts exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl1271-fw-2.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl1271-fw-ap.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl1271-fw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl1271-nvs.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl127x-fw-3.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl127x-fw-plt-3.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl127x-nvs.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl128x-fw-3.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl128x-fw-ap.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl128x-fw-plt-3.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl128x-fw.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl128x-nvs.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti-connectivity/wl12xx-nvs.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ti_3410.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ti_5052.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/tigon/tg3.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/tigon/tg3_tso.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/tigon/tg3_tso5.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/tlg2300_firmware.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/tr_smctr.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ttusb-budget/dspbootcode.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/930-fpga.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMV4p.bin.v2 exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMV9i.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMV9p.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMVei.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMVeiWO.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMVep.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMVepES.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMVepES03.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMVepFR.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMVepFR04.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMVepFR10.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMVepIT.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/CMVepWO.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/DSP4p.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/DSP9i.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/DSP9p.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/DSPei.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/DSPep.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/adi930.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/eagleI.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/eagleII.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/eagleIII.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/ueagle-atm/eagleIV.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/usbdux/Makefile_dux exists in filesystem
    linux-firmware: /usr/lib/firmware/usbdux/README.dux exists in filesystem
    linux-firmware: /usr/lib/firmware/usbdux/fx2-include.asm exists in filesystem
    linux-firmware: /usr/lib/firmware/usbdux/usbdux_firmware.asm exists in filesystem
    linux-firmware: /usr/lib/firmware/usbdux/usbduxfast_firmware.asm exists in filesystem
    linux-firmware: /usr/lib/firmware/usbdux/usbduxsigma_firmware.asm exists in filesystem
    linux-firmware: /usr/lib/firmware/usbdux_firmware.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/usbduxfast_firmware.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/usbduxsigma_firmware.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/v4l-cx231xx-avcore-01.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/v4l-cx23418-apu.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/v4l-cx23418-cpu.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/v4l-cx23418-dig.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/v4l-cx23885-avcore-01.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/v4l-cx23885-enc.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/v4l-cx25840.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/vicam/firmware.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/vntwusb.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/vxge/X3fw-pxe.ncf exists in filesystem
    linux-firmware: /usr/lib/firmware/vxge/X3fw.ncf exists in filesystem
    linux-firmware: /usr/lib/firmware/whiteheat.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/whiteheat_loader.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/yam/1200.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/yam/9600.bin exists in filesystem
    linux-firmware: /usr/lib/firmware/yamaha/ds1_ctrl.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/yamaha/ds1_dsp.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/yamaha/ds1e_ctrl.fw exists in filesystem
    linux-firmware: /usr/lib/firmware/yamaha/yss225_registers.bin exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.Marvell exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.OLPC exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.agere exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.atheros_firmware exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.broadcom_bcm43xx exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.chelsio_firmware exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.ene_firmware exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.i2400m exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.iwlwifi_firmware exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.mwl8335 exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.myri10ge_firmware exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.phanfw exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.qla2xxx exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.ralink-firmware.txt exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.rtlwifi_firmware.txt exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.tda7706-firmware.txt exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.ti-connectivity exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.ueagle-atm4-firmware exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.via_vt6656 exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENCE.xc5000 exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENSE.dib0700 exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/LICENSE.radeon_rlc exists in filesystem
    linux-firmware: /usr/share/licenses/linux-firmware/WHENCE exists in filesystem
    Errors occurred, no packages were upgraded.
    Last edited by Swarfega (2012-05-17 08:59:31)

  • Could not open forms after fresh installation of EBS 12.1.1 on RHEL5.5

    I have installed R12.1.1 instance on RHEL5.5 successfully.
    When tried to login through frontend. I could not open any forms.
    Checked error log:
    [Wed Feb 16 12:46:12 2011] [error] [client 206.180.194.83] [ecid: 1297878372:127.0.0.1:27205:0:97,0] mod_oc4j: Failed to find a failover oc4j process for session request for destination: application://oacore (no island or jgroup).
    Tried many things but could not breakthrough.
    Plz help!!!!

    Hi,
    Stopped the apps and db of the other server and restarted this server and tried to open forms but failed.
    Following entries are in :
    error_log
    *[Fri Feb 18 09:35:31 2011] [notice] Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server configured -- resuming normal operations*
    *[Fri Feb 18 09:35:31 2011] [notice] Accept mutex: fcntl (Default: fcntl)*
    Access_log
    *206.180.194.83 - - [18/Feb/2011:09:42:24 -0500] "GET /OA_HTML/RF.jsp?function_id=109&resp_id=20420&resp_appl_id=1&security_group_id=0&lang_code=US&oas=0VCtL6nK0ODZPv5uiD7wQw..&formsLink=yes HTTP/1.1" 302 2601 0 "http://<hostname>:8003/OA_HTML/OA.jsp?OAFunc=OAHOMEPAGE&akRegionApplicationId=0&navRespId=20420&navRespAppId=1&navSecGrpId=0&transactionid=1632321210&oapc=4&oas=QldYaZpsfx-in5VAlnp2rQ.." "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)"*
    *206.180.194.83 - - [18/Feb/2011:09:42:25 -0500] "GET /forms/frmservlet?appletmode=nonforms&HTMLpageTitle=&HTMLpreApplet=&code=oracle/apps/fnd/formsClient/FormsLauncher.class&width=400&height=300&archive=/OA_JAVA/oracle/apps/fnd/jar/fndforms.jar,/OA_JAVA/oracle/apps/fnd/jar/fndformsi18n.jar,/OA_JAVA/oracle/apps/fnd/jar/fndewt.jar,/OA_JAVA/oracle/apps/fnd/jar/fndswing.jar,/OA_JAVA/oracle/apps/fnd/jar/fndbalishare.jar,/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar,/OA_JAVA/oracle/apps/fnd/jar/fndctx.jar,/OA_JAVA/oracle/apps/fnd/jar/fndlist.jar&jinit_appletcache=off&gp15=icx_ticket&gv15=ODscF38Cnl0w0ZcKxkcj8A..&gp2=resp_app&gv2=SYSADMIN&gp3=resp&gv3=SYSTEM_ADMINISTRATOR&gp4=sec_group&gv4=STANDARD&gp5=function&gv5=FND_FNDCPVCM&gp6=other_params&gv6=&gp7=jsp_agent&gv7=http%3A%2F%2F<hostname>%3A8003%2FOA_HTML%2F&gp13=dbc&gv13=TEST HTTP/1.1" 200 45647 1 "http://<hostname>:8003/OA_HTML/OA.jsp?OAFunc=OAHOMEPAGE&akRegionApplicationId=0&navRespId=20420&navRespAppId=1&navSecGrpId=0&transactionid=1632321210&oapc=4&oas=QldYaZpsfx-in5VAlnp2rQ.." "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)"*
    *127.0.0.1 - - [18/Feb/2011:09:42:31 -0500] "HEAD /index.html HTTP/1.1" 200 0 0 "-" "-"*
    *127.0.0.1 - - [18/Feb/2011:09:42:51 -0500] "HEAD /index.html HTTP/1.1" 200 0 0 "-" "-"*
    No error exists in application.log
    Please suggest.
    Thank you.

  • GLUT: Fatal Error in gloss: could not open display:

    Hi, I'm trying to log into one of the other macs in my office and run a program I wrote in openGL (in c). I ssh -X into the machine, but then when I try to run the program, I get an error that it could not open a display. It happens with simple test demo programs in Mesa. Can someone help me figure out how to get a display. These things confuse me very much. I'm going to need to do this when I ssh in from home and need to open the graphics program. Also, I'm going to need to do this when I ssh in to other machines around the lab. I don't know what is different about this between macs and linux. On linux I've had to type xhost + before, but that's always solved it. Any suggestions?
    Thanks in Advance,
    Sean =)

    Yes thank you for your response.
    And my replicat is in Windows server2008
    and am using mysql2012
    here is my replicat param file
    replicat RBCNR
    targetdb ATSTGT_2012 userid atstgt, password atstgt
    sourcedefs ./dirdef/ORACLEbasicExtPumpReplicatCR.def
    gettruncates
    discardfile ./dirrpt/RBCNR.dsc, purge
    BATCHSQL
    reportcount every 1000 records, rate
    map qasource.basicExtPumpReplicatCR_MRK, target atstgt.basicExtPumpReplicatCR_MRK;
    and my extracts running well.
    But the replicat is ab bending due to it can't find the sourcedef file

  • Pacman: could not open sync database: core

    Yesterday, after i move /usr to a new partition and made change to /etc/fstab to mount /usr to that new partition!
    After that, when i tried to run pacman -Syu i got this:
    config: line 7: all directives must belong to a section
    config: line 7: all directives must belong to a section
    config: line 7: all directives must belong to a section
    :: Synchronizing package databases...
    failed to synchronize core
    failed to synchronize extra
    failed to synchronize community
    error: could not open sync database: core
           have you used --refresh yet?
    Here is my /etc/pacman.conf
    # /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
    Here is pacman.d/mirrorlist
    # Arch Linux repository mirrorlist
    # North America
    # - United States
    Server = ftp://ftp.archlinux.org/$repo/os/i686
    Server = ftp://locke.suu.edu/linux/dist/archlinux/$repo/os/i686
    Server = http://archlinux.unixheads.org/$repo/os/i686
    Server = ftp://ftp.gtlib.gatech.edu/pub/linux/di … po/os/i686
    Server = ftp://mirror.cs.vt.edu/pub/ArchLinux/$repo/os/i686
    Server = http://mirrors.easynews.com/linux/archl … po/os/i686
    Server = ftp://ftp.ibiblio.org/pub/linux/distrib … po/os/i686
    Server = http://archlinux.umflint.edu/mirrors/ar … po/os/i686
    Server = http://mirror.neotuli.net/arch/$repo/os/i686
    Server = http://mirror.rit.edu/archlinux/$repo/os/i686
    Server = http://mirror.umoss.org/archlinux/$repo/os/i686
    Server = http://schlunix.org/archlinux/$repo/os/i686
    Server = http://mirror.archlinux.com.ve/$repo/os/i686
    #Server = http://mirrors.gigenet.com/archlinux/$repo/os/i686
    # - Canada
    Server = ftp://mirror.csclub.uwaterloo.ca/archli … po/os/i686
    Server = ftp://mirrors.portafixe.com/archlinux/$repo/os/i686
    # South America
    # - Brazil
    Server = http://archlinux.c3sl.ufpr.br/$repo/os/i686
    Server = ftp://archlinux.c3sl.ufpr.br/archlinux/$repo/os/i686
    Server = ftp://ftp.las.ic.unicamp.br/pub/archlinux/$repo/os/i686
    # - Venezuela
    #Server = http://mirror2.archlinux.com.ve/$repo/os/i686
    # Europe
    # - Austria
    Server = ftp://gd.tuwien.ac.at/opsys/linux/archl … po/os/i686
    # - Belgium
    Server = ftp://ftp.belnet.be/mirror/archlinux.org/$repo/os/i686
    # - Czech Republic
    Server = ftp://ftp.sh.cvut.cz/MIRRORS/arch/$repo/os/i686
    # - Denmark
    Server = ftp://ftp.klid.dk/archlinux/$repo/os/i686
    # - Estonia
    Server = ftp://ftp.estpak.ee/pub/archlinux/$repo/os/i686
    # - France
    #Server = ftp://mir1.archlinuxfr.org/archlinux/$repo/os/i686
    #Server = ftp://mir2.archlinuxfr.org/archlinux/$repo/os/i686
    #Server = ftp://distrib-coffee.ipsl.jussieu.fr/pu … po/os/i686
    #Server = http://mir.archlinux.fr/$repo/os/i686
    #Server = ftp://ftp.free.fr/mirrors/ftp.archlinux … po/os/i686
    #Server = ftp://ftp.rez-gif.supelec.fr/Linux/arch … po/os/i686
    # - Germany
    #Server = ftp://ftp.hosteurope.de/mirror/ftp.arch … po/os/i686
    #Server = ftp://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/i686
    #Server = ftp://ftp.uni-bayreuth.de/pub/linux/arc … po/os/i686
    #Server = ftp://ftp.archlinuxppc.org/i686/$repo/os/i686
    #Server = ftp://ftp.tu-chemnitz.de/pub/linux/arch … po/os/i686
    #Server = http://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/i686
    #Server = ftp://mirrors.igprolin-online.org/archl … po/os/i686
    #Server = ftp://ftp-stud.hs-esslingen.de/pub/Mirr … po/os/i686
    # - Great Britain
    #Server = http://www.mirrorservice.org/sites/ftp. … po/os/i686
    #Server = ftp://mirrors.uk2.net/pub/archlinux/$repo/os/i686
    #Server = http://archlinux.mirrors.uk2.net/$repo/os/i686
    #Server = ftp://mirror.lividpenguin.com/pub/archl … po/os/i686
    # - Greece
    Server = ftp://ftp.ntua.gr/pub/linux/archlinux/$repo/os/i686
    # - Hungary
    Server = ftp://ftp.mfa.kfki.hu/pub/mirrors/ftp.a … po/os/i686
    # - Ireland
    #Server = ftp://ftp.heanet.ie/mirrors/ftp.archlin … po/os/i686
    # - Italy
    #Server = ftp://mi.mirror.garr.it/mirrors/archlinux/$repo/os/i686
    # - Netherlands
    #Server = ftp://ftp.nluug.nl/pub/metalab/distribu … po/os/i686
    #Server = ftp://ftp.surfnet.nl/pub/os/Linux/distr … po/os/i686
    # - Norway
    #Server = http://mirror.archlinux.no/$repo/os/i686
    # - Poland
    Server = ftp://mirror.icis.pcz.pl/archlinux/$repo/os/i686
    Server = http://piotrkosoft.net/pub/mirrors/ftp. … po/os/i686
    Server = ftp://ftp.piotrkosoft.net/pub/mirrors/f … po/os/i686
    Server = http://unix.net.pl/archlinux.org/$repo/os/i686
    # - Portugal
    #Server = ftp://cesium.di.uminho.pt/pub/archlinux/$repo/os/i686
    # - Romania
    #Server = ftp://ftp.iasi.roedu.net/mirrors/archli … po/os/i686
    # - Russia
    Server = ftp://mirror.yandex.ru/archlinux/$repo/os/i686
    Server = http://archlinux.freeside.ru/$repo/os/i686
    # - Sweden
    Server = ftp://ftp.ds.hj.se/pub/os/linux/archlinux/$repo/os/i686
    Server = ftp://ftp.gigabit.nu/$repo/os/i686
    # - Switzerland
    #Server = http://archlinux.puzzle.ch/$repo/os/i686
    # - Turkey
    #Server = ftp://ftp.linux.org.tr/pub/mirrors/arch … po/os/i686
    # - Ukraine
    #Server = ftp://archlinux.hell.org.ua/archlinux/$repo/os/i686
    #Server = ftp://ftp.linux.kiev.ua/pub/Linux/ArchL … po/os/i686
    # Asia
    # - Indonesia
    # Server = http://archlinux.cbn.net.id/$repo/os/i686
    # Server = ftp://archlinux.cbn.net.id/pub/archlinux/$repo/os/i686
    # - Israel
    #Server = http://mirror.isoc.org.il/pub/archlinux/$repo/os/i686
    # - Vietnam
    # Domain name is ftp.indochinalinux.com but there are frequent DNS problems
    Server = ftp://202.78.230.5/archlinux/$repo/os/i686
    # Australia
    Server = ftp://mirror.pacific.net.au/linux/archl … po/os/i686
    Server = ftp://mirror.aarnet.edu.au/pub/archlinux/$repo/os/i686
    Server = ftp://ftp.iinet.net.au/pub/archlinux/$repo/os/i686
    Server = http://mirror.internode.on.net/pub/arch … po/os/i686
    I'm using pacman 2.9.8! Quite out date but i can't update since i'm getting above error!
    I'm a newbie, i hope someone gives me some help on this!
    Thank you!

    Yes, i did that but get the same result:
    [kureikain@axcoto ~]$ sudo pacman -Syy
    Password:
    config: line 7: all directives must belong to a section
    config: line 7: all directives must belong to a section
    config: line 7: all directives must belong to a section
    :: Synchronizing package databases...
    failed to synchronize core
    failed to synchronize extra
    failed to synchronize community
    error: could not open sync database: core
           have you used --refresh yet?
    [kureikain@axcoto ~]$
    Any way to get pacman work again? Thank you!

  • Telent:could not open connection to the host on port 23 connect failed

    Hi,
    How to run commands of OEL5 host OS from windows XPP virtual machine(Vmware Player) on standalone desktop PC?
    While runing the telnet command on windows XPP virtual machine it's gives error
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\Administrator>cd\
    C:\>telnet 192.168.1.2
    Connecting To 192.168.1.2...Could not open connection to the host, on port 23: Connect failed
    C:\>
    Thanks
    Regard
    GSM

    user9230833 wrote:
    Launcher means shortcut to execute any file which is inside folder in Linux.Launcher are created on desktop to execute by one click of mouse.You need to create a command file that contains the required instructions to run putty with whatever relevant command line switches in order to start the remote program/process on Linux.
    For example, you have a trusted ssh connection (no password prompting) between your Windows account and the Linux vmware account. You need to execute command line +/home/vmware/bin/vmstart myVM+ on Linux.
    Your command file in Window will look something as follows:
    @echo off
    "c:\program files\putty\pssh.exe" vmware@my-linux-server "/home/vmware/bin/vmstart myVM"Once you've create this command file (.cmd file extention), you can create a desktop shortcut for it and assign an icon to it.
    However, first test the command file via an interactive console session to ensure it works. Also, I'm not sure you can script telnet using putty - but putty's ssh does support the standard ssh command line and one can execute programs/commands on the remote server in this fashion.
    Setting up trusted ssh connections is also important as passwords is a weak security mechanism. It requires a secret to be used and coded into scripts/software that needs to be authenticated.
    With ssh you generate a public/private key combination, and provide the public key as unique identifier for your o/s user and platform to a remote server (e.g. Linux). This now enables your platform and o/s user to be authenticated via the privatre/public key pair when your platform establishes a connection with the server.
    In putty, generate a ssh key (RSA). Copy and paste the public key into the Linux server account's "+home/vmware/.ssh/authorized_keys+" file. Make sure that the +.ssh+ directory and key have user read/write permissions only. And that's it - no password needed by your account to ssh into the Linux server account. No secrets that need to be kept secret (and that can be stolen and used from any other platform to gain access).

  • After exiting proxifier software while web pages are still open in firefox, I could not open any web pages unless firefox is restarted. Plz help me.

    I have a problem with Firefox when using Proxifier software. When proxifier is runing and I'm browsing web pages with firefox all things is OK. But after exiting proxifier while web pages are still open in firefox, I encounter a problem. In spite of the internet is still connected but my firefox could not open any web pages unless firefox is restarted.
    You are kindly requested help me how to solve this problem not to restart firefox.

    Hi,
    [http://proxifier.com/ Proxifier] seems to be a transparent proxy. So you could try setting '''No proxy''' in Firefox '''Tools''' ('''Alt''' + '''T''') > '''Options''' > [https://support.mozilla.org/en-US/kb/advanced-settings-browsing-network-updates-encryption Advanced] > '''Network''' > '''Settings'''.
    PS: A quick way to restart Firefox is to press [https://developer.mozilla.org/en-US/docs/Tools/GCLI '''Shift''' + '''F2'''], type '''restart''', and hit '''Enter'''.
    [https://support.mozilla.org/en-US/kb/Options%20window Options]

  • Could not open audit file:

    Hi,
    I have a 11gR2(11.2.0.1) 2 node RAC database set up on NFS ,with shared file system.
    In the adump for every min, more than 6 *.aud files are generated.
    FYI
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:25 soatst2_ora_4605_1.aud
    -rw-r----- 1 oracle oinstall 907 Nov 1 10:25 soatst1_ora_7624_1.aud
    -rw-r----- 1 oracle oinstall 904 Nov 1 10:25 soatst1_ora_7516_1.aud
    -rw-r----- 1 oracle oinstall 905 Nov 1 10:25 soatst1_ora_7636_1.aud
    -rw-r----- 1 oracle oinstall 900 Nov 1 10:25 soatst2_ora_4620_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:25 soatst2_ora_4539_1.aud
    -rw-r----- 1 oracle oinstall 905 Nov 1 10:26 soatst1_ora_7650_1.aud
    -rw-r----- 1 oracle oinstall 904 Nov 1 10:26 soatst1_ora_7648_1.aud
    -rw-r----- 1 oracle oinstall 904 Nov 1 10:26 soatst1_ora_7513_1.aud
    -rw-r----- 1 oracle oinstall 901 Nov 1 10:26 soatst2_ora_4641_1.aud
    -rw-r----- 1 oracle oinstall 906 Nov 1 10:26 soatst1_ora_7634_1.aud
    -rw-r----- 1 oracle oinstall 904 Nov 1 10:26 soatst1_ora_7580_1.aud
    -rw-r----- 1 oracle oinstall 840 Nov 1 10:26 soatst1_ora_7694_1.aud
    -rw-r----- 1 oracle oinstall 840 Nov 1 10:26 soatst1_ora_7696_1.aud
    -rw-r----- 1 oracle oinstall 834 Nov 1 10:26 soatst2_ora_4659_1.aud
    -rw-r----- 1 oracle oinstall 901 Nov 1 10:27 soatst2_ora_4631_1.aud
    -rw-r----- 1 oracle oinstall 907 Nov 1 10:27 soatst1_ora_7677_1.aud
    -rw-r----- 1 oracle oinstall 904 Nov 1 10:27 soatst1_ora_7673_1.aud
    -rw-r----- 1 oracle oinstall 901 Nov 1 10:27 soatst2_ora_4657_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:27 soatst2_ora_4639_1.aud
    -rw-r----- 1 oracle oinstall 904 Nov 1 10:27 soatst1_ora_7692_1.aud
    -rw-r----- 1 oracle oinstall 901 Nov 1 10:28 soatst2_ora_4670_1.aud
    -rw-r----- 1 oracle oinstall 906 Nov 1 10:28 soatst1_ora_7707_1.aud
    -rw-r----- 1 oracle oinstall 904 Nov 1 10:28 soatst1_ora_7705_1.aud
    -rw-r----- 1 oracle oinstall 905 Nov 1 10:28 soatst1_ora_7717_1.aud
    -rw-r----- 1 oracle oinstall 901 Nov 1 10:28 soatst2_ora_4681_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:28 soatst2_ora_4679_1.aud
    -rw-r----- 1 oracle oinstall 907 Nov 1 10:29 soatst1_ora_7725_1.aud
    -rw-r----- 1 oracle oinstall 900 Nov 1 10:29 soatst2_ora_4691_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:29 soatst2_ora_4603_1.aud
    -rw-r----- 1 oracle oinstall 907 Nov 1 10:29 soatst1_ora_7734_1.aud
    -rw-r----- 1 oracle oinstall 899 Nov 1 10:29 soatst2_ora_4711_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:29 soatst2_ora_4715_1.aud
    -rw-r----- 1 oracle oinstall 901 Nov 1 10:30 soatst2_ora_4723_1.aud
    -rw-r----- 1 oracle oinstall 905 Nov 1 10:30 soatst1_ora_7743_1.aud
    -rw-r----- 1 oracle oinstall 904 Nov 1 10:30 soatst1_ora_7675_1.aud
    -rw-r----- 1 oracle oinstall 906 Nov 1 10:30 soatst1_ora_7690_1.aud
    -rw-r----- 1 oracle oinstall 901 Nov 1 10:30 soatst2_ora_4739_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:30 soatst2_ora_4707_1.aud
    -rw-r----- 1 oracle oinstall 901 Nov 1 10:31 soatst2_ora_4749_1.aud
    -rw-r----- 1 oracle oinstall 905 Nov 1 10:31 soatst1_ora_7761_1.aud
    -rw-r----- 1 oracle oinstall 904 Nov 1 10:31 soatst1_ora_7759_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:31 soatst1_ora_7397_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:31 soatst1_ora_7415_1.aud
    -rw-r----- 1 oracle oinstall 892 Nov 1 10:31 soatst2_ora_4408_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:31 soatst1_ora_7387_1.aud
    -rw-r----- 1 oracle oinstall 892 Nov 1 10:31 soatst2_ora_4443_1.aud
    -rw-r----- 1 oracle oinstall 903 Nov 1 10:31 soatst1_ora_7393_1.aud
    -rw-r----- 1 oracle oinstall 897 Nov 1 10:31 soatst2_ora_4463_1.aud
    -rw-r----- 1 oracle oinstall 904 Nov 1 10:31 soatst1_ora_7688_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:31 soatst2_ora_4759_1.aud
    -rw-r----- 1 oracle oinstall 906 Nov 1 10:31 soatst1_ora_7389_1.aud
    -rw-r----- 1 oracle oinstall 901 Nov 1 10:31 soatst2_ora_4421_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:31 soatst1_ora_7403_1.aud
    -rw-r----- 1 oracle oinstall 892 Nov 1 10:31 soatst2_ora_4395_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:31 soatst1_ora_7391_1.aud
    -rw-r----- 1 oracle oinstall 892 Nov 1 10:31 soatst2_ora_4447_1.aud
    -rw-r----- 1 oracle oinstall 902 Nov 1 10:31 soatst1_ora_7401_1.aud
    -rw-r----- 1 oracle oinstall 896 Nov 1 10:31 soatst2_ora_4423_1.aud
    -rw-r----- 1 oracle oinstall 903 Nov 1 10:31 soatst1_ora_7454_1.aud
    -rw-r----- 1 oracle oinstall 897 Nov 1 10:31 soatst2_ora_4439_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:31 soatst1_ora_7408_1.aud
    -rw-r----- 1 oracle oinstall 892 Nov 1 10:31 soatst2_ora_4406_1.aud
    -rw-r----- 1 oracle oinstall 898 Nov 1 10:31 soatst1_ora_7381_1.aud
    Also,
    however we have faced the same
    issue , previosly on PROD Db environment.
    and found the below error in alert.log
    Linux-x86_64 Error: 27: File too large
    Additional information: 9925
    Could not open audit file:
    /mnt/vol_ora_SOATST1_apps_01/app/oracle/admin/SOATST/adump/soatst1_pmon_16150_1.aud
    Retry Iteration No: 1 OS Error: 27
    Retry Iteration No: 2 OS Error: 27
    Mon Oct 31 09:36:37 2011
    Retry Iteration No: 3 OS Error: 27
    Retry Iteration No: 4 OS Error: 27
    Retry Iteration No: 5 OS Error: 27
    Then we disable crs then
    1.rebooted the servers then cleanly stopped all crs services
    2.could not get in to adump ,so created new adump directory
    3.Started the CRs services.
    Now after a day we see still huge generation of *.aud files in adump,
    Any Suggestions/Inputs are appreciated...
    Thanks

    post
    SQL> show parameter audit
    refer this link.
    Complaining about audit file when audit_trail is set to NONE

  • I am trying to import developed images from LightRoom 5 in o Photoshop 6.  I am receiving this message and the images will not open.....'Could not open scratch file because the file is locked, you do not have necessary access permissions or another progra

    I am trying to import developed images from LightRoom 5 Photoshop 6 for further editing.  I am receiving this message and the images will not open.....'Could not open scratch file because the file is locked, or you do not have necessary access permissions or another program is using the file.  Use the 'Properties' command in the Windows Explorer to unlock the file. How do I fix this?  I would greatly appreciate it if you would respond with terms and procedures that a computer ignorant user, such as me, will understand.   Thanks.

    Have you tried restoring the Preferences yet?

  • InfoSpoke fails with message "Could not open file on application server"

    BW Experts,
    I created an InfoSpoke that is configured to extract to a flat file. The name of the file is specified using a logical filename. During extraction, the infospoke reports the error message "Could not open file on application server" adnd  marks the extraction process as red(failed). I have tried to run the InfoSpoke in background mode and in dialog mode and the same error appears. After i run in dialog mode, i checked SU53 for authorization errors and did not find any. I also tried changing the Logical filename setup in transaction FILE to a more "friendly" directory in which i'm sure i have authorizations (e.g. my UNIX home directory) and im still getting errors.
    Can you please share your thoughts on this? Any help will greatly appreciated. I also promise to award points.

    Hi Nagesh,
    Thanks for helping out.
    If i configure the InfoSpoke to download to a file using "File Name" option and also check the "Application server" checkbox, the extract works correctly (extraction to the defualt SAP path and filename=infospoke name). If i configure the InfoSpoke to download to the local workstation, the InfoSpoke also works correctly. It's only when i configure it to download to the application server and use the "Logical filename" option, that i encounter a failed extract.
    Here are the messages is the Open Hub Monitor:
    (red icon) Request No.147515
    0 Data Records
    Runtime 1 sec.
    (red icon)Run No. 1
    0 Data Records
    Runtime 1 sec.
    Messages for Run
    Extraction is running RSBO 305
    Could not open file on application server RSBO 214
    Request 147515 was terminated before extraction RSBO 326
    Request 1475151: Error occured RSBO 322
    If i clink on the error message, no messages nor clues are displayed. Note, this is a new InfoSpoke that is currently in the dev system.
    Please help.

Maybe you are looking for

  • ODI-lLOOKUP

    hi, My source table is src_table: col1|col2|col3|col4|col5 Lookup Table: lkp1|lkp2|lkp3 tgt_table: col1|col5 The lookup should be such that: value of col5 of src_table should be present in lkp1 column of the lookup table.Records of src_table not sati

  • How do I get iso 4.3 on my iphone 3gs?

    I bought a used iphone 3gs. I can't seem to get facebook app to work becauseI don't have iso 4.3 can I change the iso?

  • Restricting PO line item quantity

    HI all, How should i restrict a PO line item quantity from RFQ Quantity? please help me how to restrict PO quantity. Thanks, Message was edited by: sungnam ko Message was edited by: sungnam ko

  • INVOICE VERIFICATION REF. TO INBOUND DELIVERY

    Hello to Experts,          I want to know whether it is possible to perform Invoice Verification allocating to Inbound Delivery, if possible then what are the necessary settings. Thanks Amit

  • Adobe XI

    Help: I cannot electronically sign pdf's in Adobe Reader.  I foolishly (do you hear that Adobe?) upgraded my Adobe reader to XI and cannot sign forms electronically like I need to do for my contract job. I watched the video on electronically signing