LabVIEW RTE 6.1 for Linux. HowTo?

I want to use the Plug-In from this package with Netscape
6.0 to access a remote panel. Works fine on a Windows
machine with the RTE for Windows. But every time I open
the same page with Netscape 6 within Debian Linux I get
the following message:
This page contains information of a type (application/x-labviewrpvi) than can only be viewed with the appropriate Plug-In.
Although I installed the RTE for Linux and made a Symbolic link in .netscape/plugins ti LVNPlugin.so this
message will not go away?
What's wrong? Can anyony help?
Thanks in advance,
Armin Herzer

Armin,
Is it OK for you to actually copy the LVNPlugin.so to .../netscape/plugins? This is what I have done on the support machines here in Applications Engineering and it works great. I have Netscape 6.2 installed in /usr/local/netscape so I have the plugin copied to /usr/local/netscape/plugins/LVNPlugin.so. Try updating your Netscape to see if that helps as well. The message you are getting means that Netscape does not even see the plugin.
Randy Hoskin
Applications Engineer
National Instruments
http://www.ni.com/ask

Similar Messages

  • LabVIEW Touch Panel Module for Linux

    Hi,
    Does NI released Touch Panel Module for Linux?
    Thanks,
    Ali

    Hi Dennis,
    Here is the article I read about LabVIEW Embedded Development Module. Page 1-1, "Taking Your Graphical Design to Any 32-Bit Microprocessor".
    http://www.ni.com/pdf/manuals/371233b.pdf
    About the topic you are right. I have the VI on Windows XP. I converted it to WinCE 5.0 with LabVIEW Touch Panel Module and it works perfectly. I have LabVIEW for Linux and I converted the VI to Linux and it works on PC. Now, I want to convert it to Embedded Linux that works on ARM microcontroller.
    I am looking for LabVIEW Touch Panel Module for Linux because the only supported platform for that is Windows.
    http://www.ni.com/support/labview/lvtool.htm#touch
    Thanks,
    Ali

  • Buy Labview 7, 7.1 for Linux

    Hi,
    The company i work for is interested in porting existing Labview
    project onto the Linux platform. Although they willing to buy Labview
    8, it seems
    that this release needs stronger CPU and more memory to operate, and
    the startup time has extended compering to LV7. Therefore they want
    to buy LV7 or LV7.1 for Linux.
    Has anyone have any informations where could they buy LabView 7, 7.1 Full suite. Maybe some companies wants to get rid of LV7?
    Regards
    Albert

    Dear Albert,
    If you are wishing to use an earlier version of LabVIEW for Linux (7.0/7.1) you can purchase a current copy of LabVIEW 8.0 and then use that license for the older copy. National Instruments can burn you a copy of LV 7.x which you can deploy on your lower spec computer system.  This would then give the option to transfer code developed on 7.x to used in LV 8 in the future.  Continuous development of LV means that we exploit latest feature available in OSs which might limit your future developments of 7.x code.
    Please note if you do manage to acquire a copy of LV 7.x make sure that it is a legitimate copy and not just some bodies cast off upgrade copy.  Upgrades are not a legal single seat copies as the licences follows the upgraded LV copy and not the disk.  If you get a copy you need to acquire a License Transfer Document - this would need to be supplied by the seller (beware of EBAY sellers a number are selling copied or upgraded disks and not offer the License Transfer Document).  I enclose this documentation.
    Kind regards
    Joe Woodford BSc MIEE
    Northern European Engineering Manager
    NI-UK
    Attachments:
    license trasnfer.doc ‏61 KB

  • LabView 8 for Linux application distribution

    I have build an application for Linux using labview application builder.
    I now have a app.o file, but the application builder does not create a distribution package (unlike the windows application builder where it creates a data.cab that contains the application and runtime engine parts).
    How do I distribute the runtime engine components (or know what they are and where they are)?
    How do I tell an end-user how to install my program and the runtime engine?
    Note:  This application does not interface any hardware.  It reads a file using the command line and writes another file.

    If the built application does not use any NI drivers, or NI-VISA then the only other component you will need is the LabVIEW Run-time Engine.  You can download the version of the LabVIEW RTE that matches the version you built the application with from our download site http://joule.ni.com/nidu/cds/fn/p/sn/n17:runtime,n19:Linux,n23:4/lang/en. 
    To install your application on another machine you should only need to install the LabVIEW RTE rpm(s) using rpm.:
    rpm -Uvh *.rpm
    Then copy your binary file your built with the application builder to the new machine and run it.
    Shawn Bohrer
    National Instruments
    Use NI products on Linux? Come join the NI Linux Users Community

  • How to create a c++ shared library (.so) for linux real time (for myRio) with Eclipse to use in LabView?

    I tried already these Tutorials and Advices but I didn't find a solution:
    - http://www.ni.com/tutorial/14625/en/
    - http://www.ni.com/tutorial/14690/en/
    - http://forums.ni.com/t5/LabVIEW/Shared-Library-on-myrio-Linux-Real-time-system/m-p/2842540/
    - http://forums.ni.com/t5/LabVIEW/How-to-create-shared-library-for-linux-real-time-target-in/m-p/28218...
    - and some more
    I want use c++ codes on linux real time. For testing reasons I want to have a function that adds 2 values and gives the result.
    I've done these steps:
    1. writing a c++ file in Eclipse (see screensot 2)
    2. building a shared library (.so) from my c++ project in Eclipse (with Cross GCC)
    3. putting this file on myRio (path: /usr/local/lib/)
    4. creating a VI that calls this library from Labview with a "Call Library Function Node" (see screenshot3)
    5. Setting the properties for the "Call Library Function Node" (see screenshots 4-7)
    After I run this VI i get this error message: LabVIEW:  (Hex 0x627) The function name for the ... node cannot be found in the library. To correct this error, right-click the Call Library Function Node and select Configure from the shortcut menu. Then choose the correct function name. (see screenshot1)
    I've tried a lot things to solve this problem but I couldn't find a solution. Would be very happy if anyone can help me. I guess that I have to edit my c++ code to export my function (symbol). But I have no idea how to make it. I also tried it with a dll file in the same folder but it didn't help.
    Perhaps someone can send an example which works on myRIO.
    Thanks!
    screenshot1
    screenshot2
    screenshot3
    screenshot4
    screenshot5
    screenshot6
    screenshot7

     can see it in the screenshot8 there is a function called "_Z8AddierenddPd" instead of "Addieren". I copied this name to Labview (see screenshot9) and it worked.
    I'm sure that there is a way to compile the shared folder with gcc without decorations (mangling). But I don't know how. If someone has a recommendation I would be very glad!
    Prepend each function declaration that you want to be available without name decoration with
    extern "C" <your function declaration>
    Or if you have multiple functions you want to export you can in the header file where you declare your functions simply use:
    #ifdef __cplusplus
    extern "C" {
    #endif
    <all your function declarations>
    #ifdef __cplusplus
    #endif
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Font Smoothing in LabView for Linux

    Hello,
    I was wondering if anyone has been able to get their fonts in LabView for Linux to be either smoothed using Gnomes subpixel smoother for LCDs, or any other type of anti-aliasing. I currently can use truetype fonts in LabView, and for the most part they do look pretty decent.. btu they are not smoothed at all. Every single application I have loaded has smooth fonts other than LabView. Please let me know if anyone has managed to get this working... and if so, how.
    I am currently using Gentoo with all of my packages updated less than a month ago, with LabView 8.2
    Thanks for any info!

    Unfortunately, we do not support fonts on your operating system. Hopefully another customer is more familiar with this.
    Message Edited by Support on 10-04-2007 01:33 PM
    Charlie M. CLD

  • LabView for Linux/Mac: integrate external UI controls

    Hello,
    for Windows, there's the posibillity to integrate (UI-)controls written in annother language using ActiveX or .NET. Is there an equivalent solution for Linux and Mac?
    I.e., can I use a GTK or Carbon/Cocoa based control in LabView on Linux or Mac? I know I can utilize external libraries, but this will not allow me to display any UI elements alongside LabView controls on the same Panel without putting considerable effort in subclassing the window, which is also not so easy on Mac.
    Thanks in Advance
    Alexander Hofmann

    Hi Alexander,
    there is no such functionality that allows you to integrate external UI controls under Linux or Mac.
    However you can call Frameworks or Shared Libraries under Linux and Mac in order to communicate with external applications.
    Alternatively you can go the other way round and create Shared Libraries of your LabVIEW application, that can be called within external applications.
    Below you can find some helpful links reagrding this topic:
    Creating a Framework on a Mac for Use in LabVIEW:
    http://digital.ni.com/public.nsf/allkb/A6A6371FE0EA333B86257015005E3400
    Integrating External Code with the Import Shared Library Wizard:
    http://www.ni.com/white-paper/2818/en/
    Best Regards
    Christian

  • Labview player for linux?

    I have a Labview VI running on my Windows platform. I developed it using the Windows version of Labview 7.1. I used the Web Publishing tool to make the display available online. I have verified that I can see the display running in real time using IE on a Windows machine.
    Other machines in our LAN are running Linux, and cannot view the site in real time. For example, Mozilla asks for a plugin, but I can not find Labview Player for Linux anywhere. Can anyone help me get the Linux machines to see the real time site that is being hosted from a Windows machine?
    Thanks

    I don't think that there is a plug-in for a linux system to be able to view the published LabVIEW front panel.
    Wait! Try looking at this link:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=28545&requireLogin=False
    BobMessage Edited by Bob Y. on 06-13-2005 04:53 PM
    Bob Young - Test Engineer - Lapsed Certified LabVIEW Developer
    DISTek Integration, Inc. - NI Alliance Member
    mailto:[email protected]

  • Labview 7 for Linux on Redhat9,NI example Finder not working.

    I have Labview7 for Linux on Redhat9, installed at /usr/local/lv71. "NI example Finder" is not working, the function of browser, search,submit,none is working. When I try to close it, the window looks dead, cannot close it. I will force to close it. What is the problem? Where are the examples?
    Another question: the simple help text is working, but the details help is not working. I can open the help file by Mozilla. But I want the help could be linked, like what it is in Windows platform.
    Thanks

    Hello �
    If whenever you type �labview� at the prompt, LabVIEW 7.1 is launched, it probably means that the paths are setup to launch 7.1 but it doesn�t necessarily mean that you do not have LabVIEW 7.0 installed.
    If you only installed LabVIEW 7.1 in that computer, it is possible that somebody else had installed LabVIEW 7.0 before.
    What I suggest doing is to run the UNINSTALL scripts for both, LabVIEW 7.0 and 7.1, and reinstall LabVIEW 7.1 as root, not as user.
    Hope that helps!
    S Vences
    National Instruments

  • In LabVIEW for Linux, cannot link to a shared library file (.so).

    Hello all,
    I'm having trouble using the Call Library Function Node within LabVIEW for Linux (using Ubuntu).  I can configure my Node correctly, and it sees the available function within it with all the proper parameters, but when I close the Call Library Function dialog box it does a quick search and asks me to Find the Shared Library Named "mySharedLibraryName."  If I select it again, it merely repeats this over and over until I cancel.  Has anyone seen this before or know what is causing this?  The .so file was compiled using gcc++ - is there anything specific that should have been included (does it need a header file)?  Could some missing file be causing this?
    Thanks,
    Jason

    The elf shared library format is a supported feature of all Linux distributions since about Linux 1.0 or earlier. So it is not really an issue that Ubuntu wouldn't support shared libraries as used by the LabVIEW Call Library Node. Since the Call Library Node seems to be able to see the exported functions during selection of the function it also doesn't seem to be a problem with proper export of the symbols.
    This leaves over some dependencies of the shared library on some other shared libraries including C runtime libraries. Was the shared library compiled on the system you try to use it? If not you may have an incompatibility of the C runtime library version used on the system that was used to compile the shared library and your Ubuntu system you try to load it.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • LabVIEW 8.0.1 Update for Linux

    Hello,
    I just downloaded the update for LabVIEW for Linux an tried to install like it is described.
    The following output occurs:
    Installing...
    /bin/sh: /soft/natinst/lv801-update/bin/INSTALL.norpm: No such file or directory
    /bin/sh: /soft/natinst/lv801-update/bin/INSTALL.norpm: No such file or directory
    /bin/sh: /soft/natinst/lv801-update/bin/INSTALL.norpm: No such file or directory
    /bin/sh: /soft/natinst/lv801-update/bin/INSTALL.norpm: No such file or directory
    Would you like to install NI Example Finder (LabVIEW 8.0.1)? [Ynq]
    /bin/sh: /soft/natinst/lv801-update/bin/INSTALL.norpm: No such file or directory
    /bin/sh: /soft/natinst/lv801-update/bin/INSTALL.norpm: No such file or directory
    LabVIEW package installation complete.
    Launching LabVIEW Mass Compile utility.
    When I start LabVIEW after the obviously successfull Mass Compile I still see LabVIEW Version 8 (in contrast to Windows where I get 8.0.1).
    Is it possible that the file bin/INSTALL.norpm is missing in the tar archive or that something else is broken? I am running Debian GNU/Linux Sarge.
    Thanks in advance,
    Armin Herzer

    hello armin herzer,
    did you download the LabVIEW 8.0.1 update and the "lv801-linux-norpm.tar.gz"?
    if not, you can get it here lv801-linux-norpm.tar.gz.
    regards,
    robert h
    NI germany

  • Installing LabVIEW 8.2.1 with DAQmx 8.0 on Suse 10.2 for Linux.

    We recently installed LabVIEW 8.2.1 on Opensuse 10.2 for Linux.  After some work, my advisor was successful at getting the install to work with DAQmx 8.0 and NIKAL 1.5.  I thought I would post the install notes for anyone who finds them useful.  Everything seems functional thus far.
    Jeff Hay
    Attachments:
    installnotes_2007aug13.txt ‏12 KB

    Jeff,
    Thanks for the extremely detailed post.  I have actually been experimenting with this combination of software for the past couple weeks (i.e. OpenSUSE 10.2, DAQmx, LabVIEW 8.2.1).  Your steps match mine very closely.  I did have a one thing to add, and one question about your steps.  First, I just want to mention that NI-KAL 1.6 has been released and it fixes several issues when installing NI-KAL with newer kernels.  This is available at:
    http://joule.ni.com/nidu/cds/view/p/id/850/lang/en
    I would highly recommend using NI-KAL 1.6.
    Second,  I wanted to ask about step #2 where you modify the modpost.c file.  When I ran updateNIDrivers I was not required to make this change.  However I did have to increase the allowable symbol length.  I changed the line:
    #define SZ 500
    to
    #define SZ 1024
    in modpost.c.
    I then proceeded to follow the steps you mentioned and was able to run updateNIDrivers without error.  Could you test to see if changing the allowable symbol length fixed the problem without having to ignore the "parse error in symbol dump file."  I don't exactly know what the read_dump function does but it always makes me nervous to ignore errors.  Since NI-KAL uses modpost to install a kernel module, this failure may be important, although I don't know for sure.
    Once again thanks for your awesome post.
    Regards,
    Neil S.
    Product Support Engineer
    Multifunction Data Acquisition
    National Instruments

  • Questions on Labview 8.5 for Linux edition

    Hi All,
    I have some questions about LV 8.5 Linux edition:
    1, Does it follow the GPL rules?
    2, Which main distributions it supports?
    3, Why I cannot download an evaluation edition?
    Thanks.
    David

    DavidLee wrote:
    Hi All,
    I have some questions about LV 8.5 Linux edition:
    1, Does it follow the GPL rules?
    2, Which main distributions it supports?
    3, Why I cannot download an evaluation edition?
    Thanks.
    David
    1. LabVIEW is closed source and therefore the GPL does not apply to LabVIEW itself. It does make use of some external componanats that are under the GPL such as the kernel itself and the MESA library which is
    2) look under www.ni.com/linux/support.htm#1. basically most recent RPM distributions should be fine but for non-RPM versions it installs reasonably well on recent systems. Got it to run on Ubuntu Feisty without real problems after installing RPM package support.
    3) There isn't one. Since there is no license manager for non-Windows versions NI can not make an evaluation version that can be activated through a license key. This would require a separate build with reduced functionality to release as evaluation version, and the sales for LabVIEW for Linux do not justify that extra expense.
    Rolf Kalbermatter
    Message Edited by rolfk on 12-24-2007 10:01 AM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Is there a Labview for Linux

    Dear friends,
    I just know that there is a Labview for Linux. I have a Labview for
    Window. I dont the Labview for Linux is free. Can anyone tell me how
    much it should be? Does it have an educational discount?
    Thanks
    Tony Cheng (EE Dept. of City University of Hong Kong)
    email :[email protected]

    There is a LabVIEW of Linux. The NI online catalogue has the pricing info
    etc and you can find it at: www.ni.com/catalog, for LabVIEW for Linux I was
    taken to this page:: http://sine.ni.com/apps/we/nioc.vp?pc=bymn〈=US&cid=1382&p_0=Linux&x=26&y=10
    Cheers,
    Kamran
    Cheng Lee Lung wrote:
    >Dear friends,>>I just know that there is a Labview for Linux. I have a Labview
    for>Window. I dont the Labview for Linux is free. Can anyone tell me how>much
    it should be? Does it have an educational discount?>Thanks>>Tony Cheng (EE
    Dept. of City University of Hong Kong)>email :[email protected]>>

  • FieldPoint and labview for linux

    Can I access to Fieldpoint Ethernet modules, FP-1601, from labview 8 for linux?

    Hi,
    You cannot use fp-1601 ethernet with Linux. That is because the communication protocols are privated from NI and are only for windows.
    U can use Linux with Fp-1000/1001-2000/2010. See attached document for longer explanation,
    http://digital.ni.com/public.nsf/websearch/C87C7D6E4EDA4348862565DA005E7359?OpenDocument
    Regards,
    Jaime
    Regards,
    Jaime Cabrera
    NI Applications Engineering Spain

Maybe you are looking for

  • Need flash player 9 for mac os 10.5

    i am unable to download flash 10, so it recommended that for my system, which is mac os 10.5.8 with safari 4.0.2 i need flash player 9....but when i download the zip files from the archives i can't open it. am i missing something here or is the link

  • How to model parent child relationship with DPL? @Transient?

    Hello All, I want to model a parent entity object with a collection of child entities: @Entity public class Parent{ @PrimaryKey String uuid; List<Child> children; @Entity public class Child{ @PrimaryKey String id; I know that the DPL won't support au

  • In MRP - Alternate Item

    Hi , As one of our client need to know whether the how we can include the  Alternate items also in MRP wizard. As we are currently in 2007b. Thanks in advanace Anand

  • Erase free space issues?

    I am using fully updated Yosemite on two iMacs, one office, one home, and recently began having this problem:  When I use Disk Utility to erase free space, the window first says it is creating a temporary file and then very quickly starts the erase p

  • Optimun settings for Widescreen mp2 (m2v) converted to mp4/h264

    ive recorded a few films of freeview (UK digital terrestrial tv - PAL-25fps) and, after exporting as m2v file (mpeg2), i want to convert to mp4 / h264 and have a good picture quality when watching on a 20inch imac. At the mo ive tried using 368x208 (