What's cyclic dev in Solaris 10?  how to install it?

I install java Real-Time System in my solaris 10 and use commend to verify evn, get some error messages.
# java -version
Could not open /dev/cyclic (No such file or directory).
Please check that the cyclic device driver
is correctly installed on your system.
Java Real-Time System HotSpot(TM) Client VM warning: Disabling high-resolution timers as the cyclic driver is not used
java version "1.5.0_13"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13_Java-RTS-2.0_01-b08-eval90days_RTSJ-1.0.2)
Java Real-Time System HotSpot(TM) Client VM (build 1.5.0_13-b08-eval90days, mixed mode)
What's cyclic device driver and how to install solaris 10 ?Thanks very much!!!

Hi Weny,
It sounds like you are trying to find out the output resolution of your FPGA module.  It would be helpful if you provided what FPGA module you are using in your tests so we know what information to provide.  For instance, the R Series Manual provides information on how to calculate the required DAC output code to generate the desired output voltage.  You should also try to keep the accuracy of your device in mind.  The analog output signal you are generating will be subject to gain, offset, and noise errors.  You can use the specifications sheet (such as the R Series Specifications) of your device to determine what accuracy your board will have.  The specs also provide information on the resolution of the board.  You can search ni.com for the manual and specifications for your particular device if you are not using R Series. 
Regards,
Browning G
FlexRIO R&D

Similar Messages

  • What is Qt and how to install on my nokia 5233

    i want to know that what is Qt & what is the use of it and how to install on my nokia 5233

    amiths86 wrote:
    i want to know that what is Qt & what is the use of it and how to install on my nokia 5233
    http://en.wikipedia.org/wiki/Qt_(toolkit)
    You could try going to Nokia Beta Labs and sign-in with Nokia ID & password and look under Nokia Connectivity Analyzer:http://betalabs.nokia.com/apps/nokia-connectivity-analyzer Under "Show all download & installation instructions" you will find link for Qt 4.6.3 installer listed.
    Happy to have helped forum with a Support Ratio = 42.5

  • How To install Java Application[J2SE] into Windows Mobile

    Hi All,
    I have developed an application for Mobile devices[ Windows Mobile] exclusively using Java[AWT].When I try to install , the application in mobile, i got the following error.
    *"MIDlet cannot be installed because critical information is missing from the MIDlet file (.jar). - 13 Please contact the MIDlet provider for more information."*
    I didnt use any midlet classes in my application. So my question is, what the above error denotes? and How to install
    java[AWT] application into mobile?. What are all the requirements to install the application?.
    Thanks in advance.

    Hi David, thank you very much, your information was very useful, finally i got the work done.
    The problem was with the JVM which is im used in my Windows Mobile. And im installed CrE-ME in my mobile
    to execute java application.
    The following link has the details of how to install the JVM and execute the aplication (.jar ).
    http://javatolearn.blogspot.com/search/label/Java%20in%20Windows%20CE%20with%20CrE-ME
    Thanks and Regards
    Baskaran

  • Instructions on how to install the SAP Cryptographic Librabry

    Hi all,
    Earlier today I posted this query under the "Security" Forum but was told it's better posted here... so apologies in advance if you're seeing this thread again.
    What I would like to know is how to install the SAP Cryptographic software?... I have downloaded the SAP Cryptographic Library SAR file, and unpacked it, but am now looking for instructions on how to install and configure the software... anyone know how to do this?
    Thanks
    Sharon

    Hi Sharon,
    First uncar the SAR file in the folder  \usr\sap\<sid>\saprouter
    Just paste the files here once you uncar it.
    Then you have to set the variables as
    'SECUDIR' = \usr\sap\<sid>\saprouter
       SNC_LIB = \usr\sap\<sid>\saprouter\ntadm64\sapcrypto.dll
    ntadm64 or what ever folder you get once you uncar it.
    Reward points if helpfull.
    Regards,
    Vamshi.

  • How to install Apache Web Server with PHP on Sun Solaris Sparc machine

    Hi,
    We are trying to install the Apache Web Server and the PHP package on a Sun Solaris Sparc machine running on SunOS 5.8. We are having compilation problems with the source code of both these packages.
    Does anybody know if there are ready solaris packages for Apache and PHP available from where we can download and install instead of source code compilation?
    Or any instructions / things to watch for when installing Apache with PHP (if anybody has tried installing Apache with PHP on Sun Solaris earlier) is most welcome.
    Thanks,
    Harish

    Apache should be bundled along with Solaris check in "/var/apache" in Solaris 8 and Solaris 9
    php is available at www.php.net
    I found an old document for installing PHP maybe this will help.
    Cheers
    -Dhruva
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++Installing PHP 3.x for Apache 1.x.x on Solaris
    Introduction
    This document describes how to install PHP for Apache on Solaris.
    You should have Apache installed before trying to install PHP.
    If you want to use PHP with MySQL then you must install MySQL first.
    Before we Begin
    1. These instructions assume that you have Apache installed according to instructions.
    Getting PHP
    1. You must be logged in as root to perform this installation.
    su root
    2. I save all my downloads in:
    /usr/local/dist
    If you don't already have one, you may need to create that directory now:
    mkdir /usr/local/dist
    3. You can get PHP 3.0.14 from here(www.php.net).
    cd /usr/local/dist
    ftp ftp.php.net
    cd pub/distributions
    bin
    get php-3.0.14.tar.gz
    bye
    Installing PHP
    1. We will install PHP in /usr/local/build, but use a tricky tar command
    to do it in on hit from the download directory:
    cd /usr/local/dist
    tar xvfz php-3.0.12.tar.gz -C ../build
    Compiling PHP
    1. First let's get where the action is:
    cd /usr/local/build/php-3.0.14
    2. You now have 3 options:
    * Simple PHP install without MySQL - goto step 3
    * Simple PHP install with MySQL - goto step 4
    * Custom PHP install - goto step 5
    3. Simple PHP install without MySQL. Next, jump to step 6.
    ./configure --with-apache=../apache_1.3.12
    4. Simple PHP install with MySQL. MySQL must be installed before you can configure PHP to use it. I recommend that MySQL should always be reachable with /usr/local/mysql. Even if you install it else where you
    should create a symbolic link from /usr/local/mysql. Otherwise the compiler can have problems finding the mysqlclient library. The command
    should look like this:
    ./configure with-mysql=/usr/local/mysql with-apache=../apache_1.3.12
    Next, jump to step 6.
    5. Custom PHP install. Take a look at the available configuration directives by using this command:
    ./configure --help
    6. Now we can make the PHP executable. This may take a while.
    make
    7. Now we install the PHP module with:
    make install
    Adding the PHP Module to Apache
    1. Now we have to setup Apache to include the PHP module:
    cd ../apache_1.3.12
    2. Re-configure Apache to use the PHP module. You should use your previous Apache configure command along with the PHP activate module directive.
    You can see your previous Apache configure command by doing:
    cat config.status
    You can configure Apache using the previous command with the added PHP module by doing:
    ./config.status --activate-module=src/modules/php3/libphp3.a
    If you used the simple Apache install from instructions the command will look like this:
    ./configure prefix=/usr/local/apache activate-module=src/modules/php3/libphp3.a
    3. Make and install Apache with PHP enabled:
    make
    4. We need to stop the server before installing the files:
    /usr/local/apache/bin/apachectl stop
    5. Now we can install the new binaries:
    make install
    6. Start apache again (now running the new php enabled version):
    /usr/local/apache/bin/apachectl start
    Setting Up PHP
    1. We have to tell Apache to pass certain file extensions to PHP. We do this in Apache's httpd.conf file.
    cd /usr/local/apache/conf
    2. Edit the httpd.conf file. If you do a search for php you will find a couple of commented out lines telling Apache to use the PHP module. You should uncomment them to look like this.
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .phps
    3. I prefer to use the extension .phtml, you can use whatever extension you like (even .html) by adding lines to httpd.conf like this:
    AddType application/x-httpd-php3 .phtml
    Check that it Works
    1. We have to restart Apache to make these changes take effect on the running server.
    cd /usr/local/apache/bin
    ./apachectl restart
    2. Apache should now be running with PHP enabled. The server version should include PHP/3.0b2.
    ./apachectl status
    Apache Server Status for dev.synop.com
    Server Version: Apache/1.3.9 (Unix) PHP/3.0.12
    Server Built: Oct 25 1999 00:37:07
    3. Now it is time to test PHP with a page. The simplest thing to do is create a page called test.php3. My file is here. This file contains the
    following text:
    <?php phpinfo(); ?>
    4. Point your browser at this file on the virtual host which you used:
    http://localhost/test.php3

  • How to install DB2 in Solaris 9 using remote Win NT machine?

    Hi there,
    I am new to Solaris.
    Could you please tell me how to install DB2 administration client in Solaris 9.
    The problem is the Installation CD is put in the Solaris server and i have to install using a remote
    Windows NT machine via telnet.
    Is there any means for installing the DB2 using the console instead of using GUI interface?
    While trying to install using the GUI Interface,
    this is the mesg coming after unziping the tar.Z file and running the shell
    " ./db2setup " -----
    "The DISPLAY variable is not set properly.
    Ensure that the DISPLAY variable is set properly and that permissions are set
    properly to open windows on the display specified, then rerun the command."
    Is installing the DB2 software through console possible?
    need help.
    Thanks,
    params

    Hi,
    Thank you so much. Yeah. this is what i was looking for. Now, i successfully installed DB2 using db2_install command.
    Thanks,
    Param

  • How to install puppet agent on solaris 10 sparc

    I would like to know how to install and configure puppet on solaris 10 sprc

    Proxy configurations are most often done within the application software that needs that function and not necessarily done in the OS.   That permits you to make very specific settings and not just generic global settings that could conflict with other software.
    Can you tell us what research you have done on the topic? 
    For example, have you glanced through a Google search on "solaris web proxy" ?
    If you are hoping to use a specific web server application your forum post might be better placed in a forum space for that software instead of in a general OS forum space.   What application software will you be using?

  • How to install solaris with downloaded binary.

    dear all members,
    I had downloaded solaris 8 binary in winnt, i found that it is a zip file containing one file with file extension .ml (sol-8-1_01-install-fcs-bin-ia-ml). How to install? need to format hardisk? what partition tool to use? where to get startup disk? need to write a CD? Where to get best docs available for beginer????
    thanks for all guys...
    from
    ngkengyap

    dear,
    I am sorry to come back again. I have some problem. I read the documentation, is it solaris companion CD contains free software binaries for solaris. is solaris binari included? i need the documentation that tell me how to get started (as novice) to install solaris. I have downloaded the solaris binary, and how to do next?????
    i hope some one can give me a kindness helping hand....
    thanks...
    from
    ngkengyap

  • How to install Solaris 10 on sun ultra enterprise 450

    I just got a used sun ultra enterprise 450 and need to get a username and password. If I cannot get easily how do I reinstall the OS. What OS can I put on its? I am new to some equipment. It also came with a a storage unit for extra hard drives and how would I use it and set it up also?
    It now says type ctrl-d. What do I do?
    http://www.unix.com/sun-solaris/114206-how-get-root-password-how-install-sun-os.html
    http://www.linuxquestions.org/questions/solaris-opensolaris-20/how-to-install-solaris-10-on-sun-ultra-enterprise-450-739614/

    This same question was cross-posted to another forum site
    [http://www.linuxquestions.org/questions/solaris-opensolaris-20/how-to-install-solaris-10-on-sun-ultra-enterprise-450-739614/|http://www.linuxquestions.org/questions/solaris-opensolaris-20/how-to-install-solaris-10-on-sun-ultra-enterprise-450-739614/]
    with the same unintelligible drivel.
    O.P.
    Go to Docs.Sun.Com and get the system's documentation. Also go get the OBP 3.x Command Reference manual while you are there. All you questions are answered in that documentation, except for those that are easily found with Google.
    [Example of a Google search for your question.|http://www.google.com/#hl=en&q=solaris+root+password&aq=f&oq=&aqi=g9&fp=KxYPMM6r3XA]

  • How to installed java comm in solaris

    I have installed borland jbuilder5 enterprise edition,and
    put the libSolarisSerialParallel.so in LD_LIBRARY_PATH
    (LD_LIBRARY_PATH=/usr/lib), the comm.jar in jre\lib\,javax.comm.properties in jre\lib .
    But when I Open the serial port, the program always raise a exception "null".
    What can i do ?

    sorry :
    how to "installed" java comm in solaris
    --->
    how to install java comm in solaris

  • What does "{10}" mean in Solaris ok prompt?

    Hi,
    What does mean "{10}" in Solaris ok prompt?
    I have Sun-Fire T1000 and firmware upgraded to 6.7.0.
    {10} okThanks,
    Daniel

    I don't know how many processors are in T1000 server.
    24?
    Sun Fire(TM) T1000, No Keyboard
    Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
    OpenBoot 4.30.0, 8064 MB memory available, Serial #77558094.
    Ethernet address 0:14:4f:9f:71:4e, Host ID: 849f714e.
    bash-3.00# psrinfo
    +0 on-line since 03/23/2009 18:46:33+
    +1 on-line since 03/23/2009 18:46:34+
    +2 on-line since 03/23/2009 18:46:34+
    +3 on-line since 03/23/2009 18:46:34+
    +4 on-line since 03/23/2009 18:46:34+
    +5 on-line since 03/23/2009 18:46:34+
    +6 on-line since 03/23/2009 18:46:34+
    +7 on-line since 03/23/2009 18:46:34+
    +8 on-line since 03/23/2009 18:46:34+
    +9 on-line since 03/23/2009 18:46:34+
    +10 on-line since 03/23/2009 18:46:34+
    +11 on-line since 03/23/2009 18:46:34+
    +12 on-line since 03/23/2009 18:46:34+
    +13 on-line since 03/23/2009 18:46:34+
    +14 on-line since 03/23/2009 18:46:34+
    +15 on-line since 03/23/2009 18:46:34+
    +16 on-line since 03/23/2009 18:46:34+
    +17 on-line since 03/23/2009 18:46:34+
    +18 on-line since 03/23/2009 18:46:34+
    +19 on-line since 03/23/2009 18:46:34+
    +20 on-line since 03/23/2009 18:46:34+
    +21 on-line since 03/23/2009 18:46:34+
    +22 on-line since 03/23/2009 18:46:34+
    +23 on-line since 03/23/2009 18:46:34+
    bash-3.00# psrinfo -v
    Status of virtual processor 0 as of: 03/23/2009 18:48:11
    on-line since 03/23/2009 18:46:33.
    The sparcv9 processor operates at 1000 MHz,
    and has a sparcv9 floating point processor.

  • Adobe Bridge in Photoshop - How to install Bridge and camera raw? And what is it all about?

    Hi everyone! I am actually in love with this adobe photoshop. I used PSCS2 before, but later on upgraded to CS4. But I feel tired in upgrading to CS5.
    One time, I found a tutorial in youtube about camera raw, and would really want to use it. But I was wondering how to install the camera raw. I believe camera raw is a plugin? so I downloaded the plugin here, installed it in my PS. I downloaded a file Camera Raw.8bi and paste it on my C drive - C:\Program Files\Adobe\Photoshop CS4\Plug-ins\File Formats.
    I now am very confused, how will I open it? I do not have adobe bridge!  After I installed the camera raw, I opened my PS. I clicked the file>then browse in bridge. I had an error, it's "error 2 photoshop11 undefined". Which is what I thought, I might have done something wrong with installing it.
    My question is, do you still need adobe bridge installed in order to use camera raw?
    If yes, how does it work? How am I suppose to open camera raw?
    If no, how am I going to open camera raw without bridge?
    And also, where will I download adobe bridge? I cannot find one here for CS4, only adobe bridge for CS5. I am wondering, is it okay to install adobe bridge CS5 and use it with my PS CS4?
    I badly need help!

    WebDAV (Web-based Distributed Authoring and Versioning) is a set of extensions to HTTP/1.1.
    The main difference from FTP as far as I can see is that it allows you to edit documents on a remote web server.
    WebDAV was used by the Apple server - MobileMe but is not generally supported by hosting services.
    Using WebDAV you can mount a directory locally. This was how iDisk worked on your Mac and you could drag files onto it to upload them to the remote directory.
    With WebDAV, a number of users can share a directory which is why its used in local networks but presents security problems when using a remote server.
    If you are into file sharing rather than publishing, Dropbox or its new rival SugarSync are more appropriate.

  • Trying to login to software program known as hamspher (vip simulated ham radio,  it downloaded the program but it will not allow me to login with call sign and pin.  it has to be opened with what they call a jar file.  how do i do this?

    trying to login to software program known as hamspher (vip simulated ham radio,  it downloaded the program but it will not allow me to login with call sign and pin.  it has to be opened with what they call a jar file.  how do i do this?

    This is compatible with Mac? Especially Snow Leopard (if that is what you'e running)?
    Have you considered posting your question in their forums?
    Here is some information re. the jar file:
    http://ostermiller.org/opening_jar_files.html

  • I was holding my i phone in my hand for a while and suddenly the screen is very large...what do i do??? how do i reboot???

    I was holding my iphone in my hand for a while and suddenly the screen is gi-normous...what do I do??? how do I reboot???

    to reboot you hold the power on/off button and the large home button together until you see the little apple logo.
    However if you take three fingers together you can tap the screen back to its former size.
    See article below.
    My iPhone Icons Are Large. What's Happening?
    Good Luck

  • Downloads from itunes fail - error code 8003 - what does that mean, or more importantly, how do I get what I paid for?

    Downloads from itunes fail - error code 8003 - what does that mean, or more importantly, how do I get what I paid for?

    Try the troubleshooting for that error code on this page : iTunes: Advanced iTunes Store troubleshooting - Apple Support (search for '8003' on the page, it's just below half-way down)

Maybe you are looking for

  • Error while testing the endpoints in Service Registry

    Hi, I am getting the following error while testing the endpoint in the Service Registry Invalid Response Code: (404) Not Found. The request URL was:"http://<server>:8000/sap/bc/srt/wsdl/bndg_DD73518A3AD471F18558001D0910D3CA/wsdl11/binding/ws_policy/d

  • Add cost center in ME21N, ME22N transactions

    Hello, I need to add two columns  in item overview in transaction ME21N for cost center and PEP element. Please, could anyone tell me how I can do this? Thanks very much. Ana.

  • CSV with large variable text FIELD

    Hello All, I have more then 1000 csv with more than 100 columns to be imported to Oracle through FTP. there are few columns in CSV file that has variable text and it can go upto 9000 chars. I tried using varchar2 but it max out at 4000. Is there any

  • Modify MDM Record

    HI, When i am trying to Modify an existing MDM Record in Products Table using 7.1 Java API, i am getting the following error. Can not update record with modification status NEW When i directly modify the record in MDM Data Manager, it works fine, but

  • Product Variant?

    Hello All, I want to maintain Variants for a product in CRM using commpr01, How do i maintain the variants to a product? when i open the commpr01 and select a Product Category and flag material as Configurable, the product Opens with new Tab pages 1.