Automating DB startup/ Linux OS

Hi,
I want to start my oracle database automatically on linux AS 4. For this purpose i created a file dbora as the root user. When i try to associate the dbora service with the appropriate run levels and set it to auto-start using the following command
chkconfig --level 345 dbora on
I get the following message
service dbora does not support chkconfig
Any idea how to slove this issue??

Do you have a line similar to the following near the top your dbora script?
# chkconfig: 2345 99 10
chkconfig refers the " # chkconfig: 2345 99 10 " from dbora.
This signifies that the service has start run level set to 2, 3, 4 and 5.Stop run level set to 0, 1 and 6. And the start priority should be 99 and stop priority be 10.
Once you have that line in your dbora script you can add it with the following:
chkconfig --add dbora                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Automating Weblogic Startup/Shutdown on Linux

    hello and hope you fine
    im using weblogic 10.3 with oracle db 11g on CentoOS 5.5
    everything is working fine
    but my problem is that i want to startup/shutdown weblogic on system start/shutdown
    i defined weblogic as service ( i tried all levels) and it works but the problem is
    when the system is booting it start weblogic but it stops continue system boot!
    i also tries put the start weblogic on the .bash_profile
    the system boot but when im trying to login it stops because the same problem
    (weblogic startup and prevent contitnue the loginin )
    i also tried to add startWeblogic in /etc/rc.d/rc.local
    and the same problem when weblogic start system cant continue booting
    i also tried using nohup
    also the same problem
    so how can i start/shutdown weblogic ?
    and thanks for help
    Edited by: user13113692 on Aug 2, 2010 3:22 AM

    thank you for your replay
    but its the same
    when server is booting
    the weblogic start and goes to the running state
    it stops continue the other services and
    the server boot could not continue
    here is some of my script
    #!/bin/sh
    WEBLOGIC_HOME=/root/Oracle/Middleware/user_projects/domains/mydomain/
    # source function library
    . /etc/rc.d/init.d/functions
    case "$1" in
    start)
    echo "Starting weblogic..."
         cd $WEBLOGIC_HOME
         su root $WEBLOGIC_HOME/bin/startWebLogic.sh &
    stop)
    echo "Stopping weblogic..."
         cd $WEBLOGIC_HOME
         su root $WEBLOGIC_HOME/bin/stopWebLogic.sh &
    i also tried something like this to grape all the output to a log file
    but the problem here is that the weblogic give me a exception about the paths
    case "$1" in
    start)
    echo "Starting weblogic..."
         cd $WEBLOGIC_HOME
         su root $WEBLOGIC_HOME/bin/startWebLogic.sh ALL > ${WEBLOGIC_HOME}/logz/start.log 2>&1 &
    stop)
    echo "Stopping weblogic..."
         cd $WEBLOGIC_HOME
         su root $WEBLOGIC_HOME/bin/stopWebLogic.sh ALL >${WEBLOGIC_HOME}/logz/stops.log 2>&1 &
    i also tried this with the standalone weblogic and its the same
    any help will be appreciated

  • Automated Oracle Startup & Shutdown

    I am trying to get make my Oracle database shutdown and startup
    automatically at boot, but am having a hard time getting this to
    work properly. I have created a file in /etc/rc.d/init.d called
    dbora:
    case "$1" in
    'start')
    su - oracle -c $ORACLE_BASE/admin/bin/dbstart.sh &
    'stop')
    su - oracle -c $ORACLE_BASE/admin/bin/dbshut.sh &
    esac
    I also created the following links in EVERY (out of frustration)
    /etc/rc.d/rc#.d directory:
    lrwxrwxrwx 1 root root 22 Jul 1 10:12 S99dbora -
    /etc/rc.d/init.d/dboralrwxrwxrwx 1 root root 22 Jul 1 10:12 K30dbora -
    /etc/rc.d/init.d/dboraThe problem does not really appear to be linked to the actual
    database shutdown or startup, but rather with LINUX. I have
    replaced the contents of dbstart.sh & dbshut.sh with a simple
    echo redirect to file to prove this out. Specifically, here is
    what is happening:
    * Running "dbora start" or "dbora stop" manually always works.
    * Neither "dbora start" or "dbora stop" work when booting or
    switching runlevels, although the message STARTING DBORA does
    scroll past the console.
    I have several people look at this here and no one can figure
    out why this isn't working. Can you assist?
    null

    Peter,
    Normally the problem here is that the environment is not set, or
    is not being set correctly OR that things that Oracle needs to be
    available have already been killed (lower run level) or have not
    been started (higher run level).
    Check that the environment is OK when the dbora script is run and
    check that your scripts are called in the right order of things
    when moving between run levels.
    Regards,
    Mark
    Pete Petersen (guest) wrote:
    : I am trying to get make my Oracle database shutdown and startup
    : automatically at boot, but am having a hard time getting this
    to
    : work properly. I have created a file in /etc/rc.d/init.d called
    : dbora:
    : case "$1" in
    : 'start')
    : su - oracle -c $ORACLE_BASE/admin/bin/dbstart.sh &
    : 'stop')
    : su - oracle -c $ORACLE_BASE/admin/bin/dbshut.sh &
    : esac
    : I also created the following links in EVERY (out of
    frustration)
    : /etc/rc.d/rc#.d directory:
    : lrwxrwxrwx 1 root root 22 Jul 1 10:12 S99dbora
    : > /etc/rc.d/init.d/dbora
    : lrwxrwxrwx 1 root root 22 Jul 1 10:12 K30dbora
    : > /etc/rc.d/init.d/dbora
    : The problem does not really appear to be linked to the actual
    : database shutdown or startup, but rather with LINUX. I have
    : replaced the contents of dbstart.sh & dbshut.sh with a simple
    : echo redirect to file to prove this out. Specifically, here is
    : what is happening:
    : * Running "dbora start" or "dbora stop" manually always works.
    : * Neither "dbora start" or "dbora stop" work when booting or
    : switching runlevels, although the message STARTING DBORA does
    : scroll past the console.
    : I have several people look at this here and no one can figure
    : out why this isn't working. Can you assist?
    null

  • Automating DB startup in RHEL

    Hi All,
    I am using 10g R2 on RHEL 4.0 system.
    I am trying to automate the dbstartup while OS loading by refering to the below link,but i am quite unsuccessfull.
    http://www.oracle-base.com/articles/linux/AutomatingDatabaseStartupAndShutdownOnLinux.php
    Anybody have other alternatives to do this?

    My dbora command in its entirety is as follows:
    #!/bin/bash
    # Startup Script for Oracle Databases
    # /etc/init.d/dbora
    export ORACLE_HOME=/oracle/10g
    export PATH=$PATH:$ORACLE_HOME/bin
    case "$1" in
         start)
              su oracle -c $ORACLE_HOME/bin/dbstart
              touch /var/lock/oracle
              # Start Enterprise Manager server:
              su - oracle -c "emctl start dbconsole" > /var/log/emctl.log 2>&1
              # Start iSQL*Plus server:
              su - oracle -c "isqlplusctl start" > /var/log/isqlplusctl.log 2>&1
              echo "OK"
              # Start Oracle HTTP Server for Apex:
              sleep 3  # Give others a headstart
              su - oracle -c "unset LANG; /oracle/10g_httpclient/opmn/bin/opmnctl startall" &
         stop)
              echo -n "Shutdown Oracle: "
              su oracle -c $ORACLE_HOME/bin/dbshut
              rm -f /var/lock/oracle
              echo "OK"
              echo "Usage: 'basename $0' start|stop"
              exit 1
    esacI do seem to have problems with opmnctl conflicting somehow with OEM and iSQL*Plus, but that isn't the problem here.

  • Automating Oracle Startup/Shutdown

    I have been unable to start up Oracle automatically after
    rebooting the system. I am able to start it as the root user and
    executing /etc/init.d/oracle8i script but for some reason it
    won't do it automatically. I have done the ln -
    s /etc/init.d/oracle8i /etc/rc3.d/S99oracle8i and thought it
    would work but it hasn't. Any ideas?

    Try to use /etc/oratab file

  • Oracle automated startup

    Hi I have been able to automatically start the dbstart so that oracle is warm and started but I want to know a way of automating the STARTUP PFILE command that you have to use to start a oracle instance or session, if you could help I would be greatful. I am working on a linux platform and am using Red Hat 6.2. The situation is that if i have my system running and it crashs, when it comes to starting again I want it to start the database and the Pfile so that the database is automatically restarted with out any hassle

    Peter,
    Normally the problem here is that the environment is not set, or
    is not being set correctly OR that things that Oracle needs to be
    available have already been killed (lower run level) or have not
    been started (higher run level).
    Check that the environment is OK when the dbora script is run and
    check that your scripts are called in the right order of things
    when moving between run levels.
    Regards,
    Mark
    Pete Petersen (guest) wrote:
    : I am trying to get make my Oracle database shutdown and startup
    : automatically at boot, but am having a hard time getting this
    to
    : work properly. I have created a file in /etc/rc.d/init.d called
    : dbora:
    : case "$1" in
    : 'start')
    : su - oracle -c $ORACLE_BASE/admin/bin/dbstart.sh &
    : 'stop')
    : su - oracle -c $ORACLE_BASE/admin/bin/dbshut.sh &
    : esac
    : I also created the following links in EVERY (out of
    frustration)
    : /etc/rc.d/rc#.d directory:
    : lrwxrwxrwx 1 root root 22 Jul 1 10:12 S99dbora
    : > /etc/rc.d/init.d/dbora
    : lrwxrwxrwx 1 root root 22 Jul 1 10:12 K30dbora
    : > /etc/rc.d/init.d/dbora
    : The problem does not really appear to be linked to the actual
    : database shutdown or startup, but rather with LINUX. I have
    : replaced the contents of dbstart.sh & dbshut.sh with a simple
    : echo redirect to file to prove this out. Specifically, here is
    : what is happening:
    : * Running "dbora start" or "dbora stop" manually always works.
    : * Neither "dbora start" or "dbora stop" work when booting or
    : switching runlevels, although the message STARTING DBORA does
    : scroll past the console.
    : I have several people look at this here and no one can figure
    : out why this isn't working. Can you assist?
    null

  • Preflight Droplet/Acrobat Startup Automation Problems

    Hello,
    We're experiencing some problems regarding preflight droplets not being executed for some instances when the Acrobat XI application
    (Acrobat Pro XI and Windows XP) is not yet opened before the preflight droplet is executed (Acrobat is started/opened due to the preflight droplet call but it doesn't execute the preflight droplet anymore).
    If Acrobat is not yet opened and we executed the droplet, Acrobat opens and loads but the preflight action is not executed (we waited for a long time thinking Acrobat is still warming up but nothing really happens), we tried executing preflight droplet again (with the opened faulty Acrobat) and still does nothing. We needed to close Acrobat and reopen manually before we execute the preflight droplet for it to work again. Note that we are executing the preflight droplet using the commandline using our program (java) and not using drag and drop. Seems Acrobat is still initializing so it wasn't able to queue the preflight process... Note though that this does not happen all the time.
    Can anyone from Adobe check if this is a known issue?
    Currently, the only resolution is to manually open Acrobat and open the preflight window and let it initialize and close the preflight window again and leave acrobat open before executing executing the droplet (which is a bit troublesome if we want to automate opening Acrobat when server is restarted or just turned on)
    Please advise if there is a fix for this? Or is there a way to initialize the preflight preferences on startup of Acrobat via commandline line or any other option.
    we can try to execute a script/bat file to start up Acrobat + initialize its preflight preferences before executing our program (though we're not sure if initializing the preflight preferences can be automated on startup of Acrobat).
    Thanks

    Hello,
    We're experiencing some problems regarding preflight droplets not being executed for some instances when the Acrobat XI application
    (Acrobat Pro XI and Windows XP) is not yet opened before the preflight droplet is executed (Acrobat is started/opened due to the preflight droplet call but it doesn't execute the preflight droplet anymore).
    If Acrobat is not yet opened and we executed the droplet, Acrobat opens and loads but the preflight action is not executed (we waited for a long time thinking Acrobat is still warming up but nothing really happens), we tried executing preflight droplet again (with the opened faulty Acrobat) and still does nothing. We needed to close Acrobat and reopen manually before we execute the preflight droplet for it to work again. Note that we are executing the preflight droplet using the commandline using our program (java) and not using drag and drop. Seems Acrobat is still initializing so it wasn't able to queue the preflight process... Note though that this does not happen all the time.
    Can anyone from Adobe check if this is a known issue?
    Currently, the only resolution is to manually open Acrobat and open the preflight window and let it initialize and close the preflight window again and leave acrobat open before executing executing the droplet (which is a bit troublesome if we want to automate opening Acrobat when server is restarted or just turned on)
    Please advise if there is a fix for this? Or is there a way to initialize the preflight preferences on startup of Acrobat via commandline line or any other option.
    we can try to execute a script/bat file to start up Acrobat + initialize its preflight preferences before executing our program (though we're not sure if initializing the preflight preferences can be automated on startup of Acrobat).
    Thanks

  • Oracle on linux as service

    i start up windowz and directly launch sql*plus tool... it just asks for the username and password..and then i am good to go ,because the database is running as a service at the back end.
    but on linux I log on as oracle user,do the following:
    sqlplus /nolog
    connect / as sysdba
    startupthen it starts up and i am good to go.....
    question--is there a way to work on linux as i am doing in windowz like just entering the username and password and not to "start up the database" every time i start system...

    Hope you don't mind - I'll just cut and paste the answer I provided to the identical question on the comp.database.oracle.server newsgroup. I'll be polite and assume you are not the same person asking here as well as there ...
    Sure -
    In Windows, you are good to go because the service starts as part of the reboot.
    The counterpart in Linux/Unix is to add the service startup to the appropriate initialization scripts.
    Oracle provides the 'dbstart' and 'dbshut' routines and they can be invoked as part of the /etc/init? setup. This varies by Linux/Unix variant.
    Setting this up is actually documented as well - in the "Oracle9i Installation Guide Release 2 (9.2.0.1.0) for UNIX Systems: AIX-Based Systems, Compaq Tru64 UNIX, HP 9000 Series HP-UX, Linux Intel, and Sun Solaris" - the section titled "Automating Database Startup and Shutdown for HP, Linux and Solaris (Optional)"
    http://download-west.oracle.com/docs/html/A96167_01/post-inst.htm#sthref548

  • Database auto-startup script

    Hi Team,
    How can I check whether the auto startup script is scheduled for the database after the server reboot
    OS version:Linux server1 2.6.18-194.11.1.el5 #1 SMP Tue Jul 24 05:45:06 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
    DB version :11.2.0.2
    /etc/oratab entry is set to Y.
    But the database did not startup after the server reboot. How to verify that the auto startup script is available?

    http://www.oracle-base.com/articles/linux/automating-database-startup-and-shutdown-on-linux.php
    HTH
    Anand

  • Automate RAC startup

    I am familiar with automating startup of single instances on Linux using $ORACLE_HOME/bin/dbstart and /etc/oratab and a script init /etc/init.d that invokes dbstart at the right runlevel.
    Could someone say if any of that is relevant to automating the startup/shutdown of a 2-node RAC on Linux?
    I've searched Google and this forum for an example of how to automate startup on RAC, but have come up empty-handed.
    (I know things like srvctl start database -d mydb, but I am unclear if that needs to go into an init.d script, or if that takes care of all the crs processes etc., or if they need to be started up separately -and if there's a way to setup a dependency on the database and ASM instances, etc.)
    Any pointers would be appreciated.

    For the auto start of CRS, you can find out the file (crsstart or ohasdstr) under /etc/oracle/scls_scr/`hostname`/root/. This file would store the value to indicate auto start or not.
    enable auto start
    crsctl enable crs
    disable autod start
    crsctl disable crs
    For the CRS resource, you can check the requested resource with "crs_stat -p <resource name>". The output of "crs_stat -p" would show out the dependence resource.
    REQUIRED_RESOURCES=ora.xxxx.xxxx.asm

  • Oracle 11gR2 systemd startup script

    I would like to write down the systemd startup script here for I can't find any on the internet. wish people don't have to browse around and find nothing.
    everything on internet is about 9i and no systemd startup script example.
    I hv tried several times that the script runs right and start up oracle at bootup.
    Issuing systemctl and it returns the following
    oracle.service                loaded active exited    Oracle database serverthe script is working on my Fedora 18 x86_64.
    Please give your input if you find mistake, error, or anything wrong.
    Thank you
    oracle.service
    [Unit]
    Description=Oracle database server
    After=syslog.target network.target
    [Service]
    Type=oneshot
    User=oracle
    Group=oinstall
    RemainAfterExit=yes
    ExecStart=/bin/oracle.sh;
    [Install]
    WantedBy=multi-user.targetoracle.sh
    #! /bin/bash
    #  script used by oracle.service
    ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_1
    ORACLE_SID=orcl
    ORACLE_BASE=/home/oracle/app/oracle/product/11.2.0
    $ORACLE_HOME/bin/lsnrctl start;
    $ORACLE_HOME/bin/dbstart $ORACLE_HOME;

    newbieRyan wrote:
    I would like to write down the systemd startup script here for I can't find any on the internet. wish people don't have to browse around and find nothing.
    everything on internet is about 9i and no systemd startup script example.Really??!?!?!
    I googled 'start oracle on linux startup" and the very first hit is pretty much the standard reference on the subject: http://www.oracle-base.com/articles/linux/automating-database-startup-and-shutdown-on-linux.php
    I hv tried several times that the script runs right and start up oracle at bootup.
    Issuing systemctl and it returns the following
    {code}
    oracle.service loaded active exited Oracle database server
    {code}
    the script is working on my Fedora 18 x86_64.
    Please give your input if you find mistake, error, or anything wrong.
    Thank you
    oracle.service
    {code}
    [Unit]
    Description=Oracle database server
    After=syslog.target network.target
    [Service]
    Type=oneshot
    User=oracle
    Group=oinstall
    RemainAfterExit=yes
    ExecStart=/bin/oracle.sh;
    [Install]
    WantedBy=multi-user.target
    {code}
    oracle.sh
    {code}
    #! /bin/bash
    # script used by oracle.service
    ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_1
    ORACLE_SID=orcl
    ORACLE_BASE=/home/oracle/app/oracle/product/11.2.0
    $ORACLE_HOME/bin/lsnrctl start;
    $ORACLE_HOME/bin/dbstart $ORACLE_HOME;
    {code}

  • Automatic Startup in Oracle 10.2.02 on Solaris 10 X86

    I have create the /etc/init.d/oratab from the sample of
    Automating Database Startup and Shutdown on Other Operating Systems
    by following script:
    ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
    ORACLE=oracle
    PATH=${PATH}:$ORACLE_HOME/bin
    export ORACLE_HOME PATH
    $ORACLE_HOME/bin/dbstart $ORACLE_HOME
    But I got the ERROR log
    SQL> ERROR:
    ORA-12546: TNS:permission denied
    SQL> ORA-12546: TNS:permission denied
    SQL>
    from $ORACLE_HOME/startup.log
    What's Wrong with the dbora script ?

    $ORACLE_HOME/bin/dbstart $ORACLE_HOME
    $ORACLE_HOME/bin/dbstart will be sufficient, script will read the oratab file (on Solaris usual location of oratab is in /var/opt/oracle) and starts all SID that have Y flag set.
    To "user52":
    check ur privs on folder;
    be sure the permissions are 777.This is not good approach from security point of view, really - 755 is fine and sufficient.

  • Startup scripts for DB in one $OH and AS in another $OH

    Hello, I am setting up Oracle Collaboration Suite 10g on a SLES9 SP3 machine. I have used the installers and followed the docs (so I ended up creating oracle users, setting kernel params, modifying limites, etc myself). I am now trying to figure out how to get this setup to start on boot. I found the orarun package but the Oracle Collaboration Suite (OCS) docs seem to recommend against this. I am willing to use it if it works, however. I have also looked at the ocsctl_sample script that is installed in the apps tier, but that doesn't seem to handle starting a db in a different $OH and can not be run by root. I wrote a wrapper to use "su oracle -c cmd" but that didn't work out either.
    The setup I have is a database instance in one $ORACLE_HOME, and then the app server and apps in a separate $ORACLE_HOME (infrastructure/OID is on another server). Both of these $OH instances are listed in /etc/oratab of course. Since OCS handles mail it listens on privileged ports (25, 143, etc), so this listener may need to be started by root. I am thinking I only want one opmn instance, one apache instance, and one em instance on the system as well. I read through the init.d/oracle script from the orarun package and it seems like it only looks at the first $OH found in /etc/oratab if the /etc/profile.d/oracle.sh file is not found (I moved it out of the way as I have two scripts I use to set oracle environments depending on whether I'm working on the db or the as).
    Has anyone either used orarun or developed other scripts for starting a db instance in one $OH and an app server in another? Any tips?
    Thanks in advance,
    Chris

    Well, the issue is really multiple ORACLE_HOMEs. The single box install of OCS is two, in OCS 9i it was three. There is no problem with it, you just have to set the environment(mr obvious).
    As far as having a single EM, you'll have two on your apps box. One for the apps, the other for the DB. Again, no problem because they are on different ports.
    So, I guess the simplest explanation is just to write your own script. You can either create a sudoer for the mail listener, or set the setuid bit. There is a note on metalink for starting the mail listener as Oracle user.
    The safest way would be to log in as root each time the mail listener needs started, it depends what you can tolerate. You will come across these very same issues if you setup the web cache etc. for reserved ports.
    Another issue for automating the startup with your environment, is the fact that it is on two boxes. The processes need started in a particular order, the DB, Infra, then the apps. I don't have a good suggestion for that. You really should have put the DB and infra on one box, and the apps on another.

  • GridLayout problem in Linux with SashForm (SWT)

    I have tried an example using SashForm in Linux.
    Its displaying well if I use FillLayout for my Shell.
    but SashForm and its contents are not displayed if
    I use GridLayout for Shell.
    I have given my code below.
    Please help me in this issue.
    Thanks in advance
    import java.awt.BorderLayout;
    import java.awt.Frame;
    import java.awt.Panel;
    import org.apache.batik.swing.JSVGCanvas;
    import org.eclipse.swt.*;
    import org.eclipse.swt.awt.SWT_AWT;
    import org.eclipse.swt.custom.*;
    import org.eclipse.swt.layout.*;
    import org.eclipse.swt.widgets.*;
    public class SashTest {
    public static void main (String [] args) {
    final Display display = new Display ();
    Shell shell = new Shell(display);
    shell.setLayout (new GridLayout(1,true));
    GridData data = new GridData(GridData.FILL_BOTH);
    Composite comp = new Composite(shell, SWT.EMBEDDED|SWT.BORDER);
    comp.setLayout(new FillLayout());
    comp.setLayoutData(data);
    SashForm sashForm = new SashForm(comp,SWT.HORIZONTAL|SWT.EMBEDDED|SWT.BORDER);
    sashForm.setLayout(new FillLayout(SWT.HORIZONTAL));
    Composite ctreeComp= new Composite(sashForm,SWT.BORDER);
    ctreeComp.setLayout(new FillLayout());
    Tree cTree = new Tree(ctreeComp, SWT.SINGLE | SWT.BORDER);
    for(int i=0;i TreeItem items = new TreeItem(cTree, SWT.NULL);
    items.setText("Treeitem "+i);
    Composite cgComp = new Composite(sashForm, SWT.BORDER|SWT.EMBEDDED);
    cgComp.setLayout(new FillLayout());
    sashForm.setWeights(new int[]{20,80});
    //Setting up canvas for rendering process wise communication graphs
    Frame pcFrame = SWT_AWT.new_Frame(cgComp);
    Panel cPanel = new Panel(new BorderLayout());
    pcFrame.add(cPanel);
    cPanel.add(new JSVGCanvas());
    shell.open ();
    while (!shell.isDisposed ()) {
    if (!display.readAndDispatch ()) display.sleep ();
    display.dispose ();
    }

    Mario,
    Open Source drivers for our DAQ products are developed by the Comedi project. It should be noted that these drivers may not contain the full functionality of the NI-DAQ driver available for E Series devices under the various Windows and Mac operating systems.
    For information regarding the Comedi Project please see http://stm.lbl.gov/comedi. Support for the Comedi drivers is available through the Comedi mailing list. Please contact the Comedi mailing list for questions regarding this Open Source driver.
    For more information on National Instruments Measurement and Automation products for linux, see http://www.ni.com/linux.
    Regards,
    Justin Britten
    Applications Engineer
    National Instruments

  • Problem in linux with flex

    Hi,
                 I'm new to linux with flex,am using Eclipse 3.5 flex builder 3 installing perfectly but when i'am  creating flex application it is showin Assertion failed error.
    org.eclipse.jface.util.Assert$AssertionFailedException: Assertion failed:
        at org.eclipse.jface.util.Assert.isTrue(Assert.java:179)
        at org.eclipse.jface.util.Assert.isTrue(Assert.java:164)
        at com.adobe.flexbuilder.editors.derived.editor.FlexMultiPageEditorPart.setActivePage(FlexMu ltiPageEditorPart.java:569)
        at com.adobe.flexbuilder.editors.common.editor.CodeAndDesignEditor.setActivePage(CodeAndDesi gnEditor.java:647)
        at com.adobe.flexbuilder.editors.mxml.MXMLEditor.setActivePage(MXMLEditor.java:487)
        at com.adobe.flexbuilder.editors.derived.editor.FlexMultiPageEditorPart.createPartControl(Fl exMultiPageEditorPart.java:235)
        at com.adobe.flexbuilder.editors.common.editor.CodeAndDesignEditor.createPartControl(CodeAnd DesignEditor.java:162)
        at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:662)
        at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:462)
        at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:595)
        at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:313)
        at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:180 )
        at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFo lder.java:270)
        at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder .java:65)
        at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStack Presentation.java:473)
        at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1256)
        at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:1209)
        at org.eclipse.ui.internal.PartStack.showPart(PartStack.java:1608)
        at org.eclipse.ui.internal.PartStack.add(PartStack.java:499)
        at org.eclipse.ui.internal.EditorStack.add(EditorStack.java:103)
        at org.eclipse.ui.internal.PartStack.add(PartStack.java:485)
        at org.eclipse.ui.internal.EditorStack.add(EditorStack.java:112)
        at org.eclipse.ui.internal.EditorSashContainer.addEditor(EditorSashContainer.java:63)
        at org.eclipse.ui.internal.EditorAreaHelper.addToLayout(EditorAreaHelper.java:225)
        at org.eclipse.ui.internal.EditorAreaHelper.addEditor(EditorAreaHelper.java:213)
        at org.eclipse.ui.internal.EditorManager.createEditorTab(EditorManager.java:778)
        at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:677)
        at org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:638)
        at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2854)
        at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2762)
        at org.eclipse.ui.internal.WorkbenchPage.access$11(WorkbenchPage.java:2754)
        at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:2705)
        at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
        at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2701)
        at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2685)
        at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2676)
        at org.eclipse.ui.ide.IDE.openEditor(IDE.java:651)
        at org.eclipse.ui.ide.IDE.openEditor(IDE.java:610)
        at org.eclipse.ui.actions.OpenFileAction.openFile(OpenFileAction.java:99)
        at org.eclipse.ui.actions.OpenSystemEditorAction.run(OpenSystemEditorAction.java:99)
        at org.eclipse.ui.views.navigator.OpenActionGroup.runDefaultAction(OpenActionGroup.java:133)
        at org.eclipse.ui.views.navigator.MainActionGroup.runDefaultAction(MainActionGroup.java:330)
        at org.eclipse.ui.views.navigator.ResourceNavigator.handleOpen(ResourceNavigator.java:787)
        at org.eclipse.ui.views.navigator.ResourceNavigator$6.open(ResourceNavigator.java:499)
        at org.eclipse.ui.OpenAndLinkWithEditorHelper$InternalListener.open(OpenAndLinkWithEditorHel per.java:48)
        at org.eclipse.jface.viewers.StructuredViewer$2.run(StructuredViewer.java:842)
        at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
        at org.eclipse.core.runtime.Platform.run(Platform.java:888)
        at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:48)
        at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175)
        at org.eclipse.jface.viewers.StructuredViewer.fireOpen(StructuredViewer.java:840)
        at org.eclipse.jface.viewers.StructuredViewer.handleOpen(StructuredViewer.java:1101)
        at org.eclipse.jface.viewers.StructuredViewer$6.handleOpen(StructuredViewer.java:1205)
        at org.eclipse.jface.util.OpenStrategy.fireOpenEvent(OpenStrategy.java:264)
        at org.eclipse.jface.util.OpenStrategy.access$2(OpenStrategy.java:258)
        at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:298)
        at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
        at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1176)
        at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3493)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3112)
        at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405)
        at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369)
        at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221)
        at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
        at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493)
        at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1311)
    am unable understand this error

    Mario,
    Open Source drivers for our DAQ products are developed by the Comedi project. It should be noted that these drivers may not contain the full functionality of the NI-DAQ driver available for E Series devices under the various Windows and Mac operating systems.
    For information regarding the Comedi Project please see http://stm.lbl.gov/comedi. Support for the Comedi drivers is available through the Comedi mailing list. Please contact the Comedi mailing list for questions regarding this Open Source driver.
    For more information on National Instruments Measurement and Automation products for linux, see http://www.ni.com/linux.
    Regards,
    Justin Britten
    Applications Engineer
    National Instruments

Maybe you are looking for

  • How do my wife and i share just one music account?

    Ive had an iphone and an itunes account for a long time, and now that im married my wife also has an iphone, but with a seperate itunes account. i have thousands of songs, she has only one album. it seems dumb to me to have to purchase all that music

  • Multiple calendars on one machine

    I would like to have a machine near our phone that has each family member's ical calendar information displayed on one calendar. Is it possible to sync a computer to multiple ical accounts and have all those accounts displayed on one calendar ... aut

  • "A Serious Error Has Occurred That Requires Adobe Premiere Pro to Shut Down"

    "A Serious Error Has Occurred That Requires Adobe Premiere Pro to Shut Down" Pops up every time I export a video.. I have 2 TB of space where i'm exporting so thats not the issue... I'm using RED Giant Pluraleyes to match multiple cameras but other t

  • Can I set the text color in a Label?

    Hi everyone ~ Can I set the font color in PP? I only found that there is a "setBackground".. but I want to set the color within a Label. Thanks! Gary

  • Unable to login to Kuler...

    I can login to the regular Adobe site with no problem, but Kuler tells me my username and password are wrong, but I am logged into the regular Adobe site with my Adobe ID. ANd if I try to register, it just refreshes the page and goes nowhere. I think