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

Similar Messages

  • Labview evaluation version for linux

    Sir i need evaluation version of labview for linux. kindly provide me
    hyperlink if any, other wise provide send me CD for evaluation, if
    feasible.
    My postal address is
    Murad Ali s/o Bagh wali
    village and p.o babuzai.abakhel.pulha
    distt and tehsil Mardan, NWFP, Pakistan
    regards

    Unfortunately, we do not currently offer an evaluation version of LabVIEW for Linux. We do offer evaluation versions of LabVIEW for Windows, so if you have a Windows system available, you can evaluate LabVIEW there. With the exception of a few Windows-specific features, the Linux version of LabVIEW is identical in both layout and functionality.
    Kind Regards,
    E. Sulzer
    Applications Engineer
    National Instruments

  • Question on CIN in LabVIEW for Linux

    I am using LabVIEW 7.1 for Linux.
    I ran the command to create the makefile:
    lvmkmf labviewcode.c
    It creates the makefile.
    When I type in the command make in order to make the necessary .lsb files, it gives me the following error:
    make: *** No rule to make target 'labviewcode.c.o', needed by 'labviewcode.c.lsb'. Stop.
    What extra commands do I need to add within the makefile in order to have it create an object file?
    This is my CIN source file:
    #include "extcode.h"
    #include <stdio.h>
    #include <stdlib.h>
    #include <dlfcn.h>
    MgErr CINRun(float64 *Numeric);
    MgErr CINRun(float64 *Numeric)
       /* Insert code here */
       void *libhandle;
       int (*edge_func)();
       libhandle = dlopen("/home/elliot/opencv_code/edge_code/edge.so", RTLD_LAZY);
       edge_func = dlsym(libhandle, "main");
       (*edge_func)();
       dlclose(libhandle);
       return noErr;
    I copied the main body of the code from a C function that wraps around a Linux shared library (.so - Linux equivalent for Windows DLL) file. This C function does compile and execute correctly. I decided to try out the CIN call from Labview 7.1 for Linux since I was running into problems calling the .so file from LabVIEW which is strange since I was able to call it from a C function.

    Never mind, discovered the error.

  • Quickstart For Linux

    Hellow,
    I'm Working in a Windows to Linux migration and we use Staroffice as Office Suite.
    We were trying to use the quickstart on Linux but it didn't work.
    This feaure is very important to improve the user speed feeling.
    We also were trying Staroffice8 and the message were unbelievable for me:
    -quickstart starts the quickstart service (only available on windows platform)
    I need an explanation for that, please.
    Regards,
    Miguel ��ngel Coll

    user12289873 wrote:
    I have a basic question, is Oracle Management Pack for Linux a stand alone application or like the name indicates a pack to another larger application ?The Linux Management Pack is part of Oracle Enterprise Manager 11g Grid Control. It requires a full install of Grid Control, which includes Oracle Database 11g Enterprise Edition, Oracle WebLogic Server and Enterprise Manager Grid Control itself. However, once you have this installed, it is better suited to managing and maintaining large groups of Oracle Linux servers than Spacewalk. Spacewalk has no internal capabilities to manage Oracle Linux boxes and requires continual tweaking in order to keep it working, in the same way you can't actually manage large groups of Red Hat Enterprise Linux servers with it (requires the actual Satellite Server product) without lots of tweaking.
    For example, in order for Spacewalk to work, you have to keep using the rep_populate.sh script you're currently using to create local yum mirrors to import into Spacewalk. The Spacewalk server itself won't talk to ULN without code hacking, as far as I could tell. While Spacewalk can be made to work, it's not straightforward and there is no documentation online on how to get it to work with Oracle Linux. It's a lot of trial and error with manipulating the CentOS instructions.
    BTW, we include all the licenses you need for the entire stack with your Oracle Linux basic or premier subscription, so you can install the entire stack! Furthermore, you can then start to explore managing the rest of your Oracle products from a central location. Enterprise Manager 11g Grid Control can handle management from the operating system (or virtualization layer if you start looking at Oracle VM) all the way up the stack through the database to application servers and beyond.

  • LabVIEW for Linux Student Edition

    Does National Instruments offer a Student Edition of LabVIEW for Linux? If not, would National Instruments provide a discount for a student?

    If not, someplace to check (no kidding!) is ebay. Occasionally you will see a copy of LV come up there.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • 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 7 express for Gentoo Linux

    Hi guys I have Gentoo distribution and I want to install LabVIEW 7 on it I have tried but could not do it successfully can anyone tell me what do I need to have Lab View installed like if I need rpm etc, which ofcourse I do not have ,
    any suggestion will be welcome
    thanx alot

    Perhaps needless to say, you do need a LabVIEW version for linux. A windows
    cd won't install on linux...
    Regards,
    Wiebe.
    "David Duffey" wrote in message
    news:50650000000500000036930100-1079395200000@exch​ange.ni.com...
    > No, you don't need RPM.
    >
    > The LabVIEW 7.1 install script works better on non-redhat systems
    > (including gentoo).
    >
    > LabVIEW 7.0 comes with utilities that should install on non-rpm
    > systems too.
    >
    > The "INSTALL" script can detect (but doesn't not work for all distros
    > in 7.0) that you don't have an RPM system and then use the executable
    > in the "bin" directory to pull the files out of the .rpm files for
    > you.
    >
    > What happens when you run "sh ./INSTALL?"
    >
    > Make sure you don't have an executable called "rpm" in
    your path.
    >
    > And, if you edit INSTALL and change the first occurance of:
    >
    > NORPM=
    >
    > to
    >
    > NORPM=y
    >
    > the install script should work for you.
    >
    > David Duffey

  • 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

  • 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

  • Is there a way to use Labview for Linux for IBM AIX 5.1.

    I think any application built for linux can run on the AIX 5.1 if the application is recompiled on the AIX 5.1. So theoretically NI can just recompile there Linux version of Labview on the AIX 5.1 and it will work. Is there a possibility that NI will port Labview for AIX 5.1.

    I think that the use of LabVIEW for linux is platform independent as far as hardware. I believe that as long as you are running a compatible GUI (I believe XWindows and KPT??? are two that are recommended - check ni.com/linux for more information. So, for your purposes, as long as you can install the proper GUI, and then LabVIEW for Linux, you can then run, code, compile, and deploy applications on the AIX 5.1.
    I am personally VERY interested in knowing about your success (or failure, should that unlikelyhood occur) on Linux. If you browse the topics, there is actually one on non-windows useage of LabVIEW. I am currently setting up my first Linux machine at my home office, and am very curious to know how other people do with this 'adventure into unc
    harted territory'. The only documented useage I have seen is in Gary Johnson's newest edition of Power Programming.
    Good luck, and please keep us posted. I sense that I am the only LabVIEW for Linux fan besides yourself. But please feel free to post to this thread, and to the topic.

  • Linux labview eval version for lego mindstorms nxt

    Hi,
    I'm a high school teacher in Tamil Nadu, India. Our school recently purchased 4 lego mindstorm NXT kits. We were happy to find that the new software was powered by labview, because it runs on linux. Our school runs on an Edubuntu LTSP network. So we were sad when we discovered the installation disk only supported MacOS and Windows.
    I looked at the labview site for NXT and saw that we could get a student evaluation copy for use with NXT - so I filled out the forms, but when the link to the FTP site was given, it only provided a Windows and MacOS copy.
    Can we obtain a student copy of labview for Linux for use with our NXT kits?
    Thank you, Jason Stewart.

    Hello Jason,
    I'm sorry I didn't make this more clear in my previous post, but the LabVIEW Student Edition for use with LEGO® MINDSTORMS® NXT is only available for Windows.  This will provide you with the LabVIEW 7.1 Student Edition and then you can download the LabVIEW Toolkit for LEGO® MINDSTORMS® NXT.  This will give you the ability to create custom NXT blocks in LabVIEW.
    Another option would be to purchase the latest LabVIEW Student Edition and then download the LabVIEW Toolkit for NXT.  However, this edition is also only available for Windows.  The customers that are downloading the LabVIEW Toolkit for LEGO® MINDSTORMS® NXT on a Mac OS have purchased the full version of LabVIEW for Mac.
    Your best option would be to contact the NI India Sales Office at [email protected] or 91 80-4119 0000.  They would be able to help you best with this.
    Regards,
    Clint M

  • VXI support under LabVIEW for Linux

    A potential client contacted me regarding a small project using VXI hardware under Linux. I'm considering using LabVIEW for Linux but I'm not too clear on NI's VXI driver support and whether they have a VI library for the particular hardware. I contacted NI tech support over the phone but they didn't have any answers. BTW, I've used LV with PCI and ISA DAQ boards under Windows and Linux but I've never used VXI.
    Here is the hardware in question:
    PCI/VXI-MXI-2(8026) - PCI to VXI bridge
    VXI-AO-48XDC - 48 channel analog output board
    VXI-MIO-64XE-10 - multifunction DAQ board
    Anyone know what's involved in building a LV app for this system under Linux, i.e. what's NI's HW driver and LabVIEW support?
    -kevin

    Kevin,
    National Instruments has NI-VXI for Linux. The driver provides support for the PCI/VXI-MXI-2(8026), and VXI embedded Controllers. The NI-VXI driver also provides the programming API that will allow you to communicate with the VXI boards in your system.
    You can find a KnowledgeBase that shows what versions of Linux are currently supported by NI-VXI here.
    If you have never used VXI before I should note that it is different from using a PCI DAQ card. You might want to read this here which will explain a little about VXI.
    The LabVIEW for Linux system requirements can be found here. I should note that LabVIEW will work on the 2.6 kernel, however since you are looking at NI-VXI you will need to use the 2.4 kernel anyway.
    Hopefully this answers your question, but if you have any further questions feel free to ask!
    Shawn B.
    National Instruments
    Use NI products on Linux? Come join the NI Linux Users Community

  • LabVIEW for Linux support on VXI hardware

    A potential client contacted me regarding a small project using VXI hardware under Linux. I'm considering using LabVIEW for Linux but I'm not too clear on NI's VXI driver support and whether they have a VI library for the particular hardware. I contacted NI tech support over the phone but they didn't have any answers. BTW, I've used LV with PCI and ISA DAQ boards under Windows and Linux but I've never used VXI.
    Here is the hardware in question:
    PCI/VXI-MXI-2(8026) - PCI to VXI bridge
    VXI-AO-48XDC - 48 channel analog output board
    VXI-MIO-64XE-10 - multifunction DAQ board
    Anyone know what's involved in building a LV app for this system under Linux, i.e. what's NI's HW driver and LabVIEW support?
    I've purchased LV 7.1 FDS for Linux for other projects. Do I have to buy anything else? I found this link on the NI site:
    http://sine.ni.com/apps/we/nioc.vp?cid=10603〈=US
    -kevin
    PS: Sorry for the repost. I accidentally posted this to the LabVIEW forum.

    Kevin,
    You will need NI-VXI/VISA for Linux part number 778131-01. Which can be found on the link you provided. The forums seemed to have removed the "〈" from the link so it is a good idea to preview your post Hopefully you have read my reply to your other post but we can continue it here if you have further questions.
    Shawn B.
    National Instruments
    Use NI products on Linux? Come join the NI Linux Users Community

Maybe you are looking for

  • How to make a desktop app ready for tablet

    I have a flash drawing tool on desktop, and just tried to use it on a windows 7 tablet pc. The system comes with two virtual keyboards, a bigger one that the user has to actively open, and a smaller one that offers itself near many text entry fields

  • Mapping in dynamic structures

    Hi all, in a scenario I'm working on at the moment, I get a flat file in and have to send a XML. Up to this point there is no problem, but the second line of the file conains the field list with a delimiter and the other lines the data with the same

  • IPod in use by another user

    My iPod recently froze during an update and now when I plug it into my mac iTunes says "The ipod "ipod" is in use by another user on this computer". I don't have any other users. I know it's not a problem with the ipod because it works when plugged i

  • Restore deleted users

    Hi! The tree\LAN has 3 servers: 1.NW6.5 sp 8 with BorderManager 3.9 sp2 2.NOWS SBE 2.5 3.NOWS SBE 2.0 I need to add two users to the BorderManager PROXY (first server). They can't login through the FireFox browser. The users where deleted by mistake,

  • HRFORMS and Downloading for a 3rd Party Print Service.

    Hi there I was wondering if someone could help. We are currently testing our printing of the NEW HRFORM for GB.  This has been created in "FORM BUILDER" format We print the forms in the back ground and this creates a spool, but the spool contains Par