ni.com is currently undergoing scheduled maintenance.
Some services may be unavailable at this time. Please contact us for help or try again later.
10-31-2007 11:45 AM
10-31-2007 12:15 PM - edited 10-31-2007 12:15 PM
Message Edited by dmontalvao on 10-31-2007 06:16 PM
Message Edited by dmontalvao on 10-31-2007 06:18 PM
11-17-2007 04:21 AM
12-27-2007 12:44 AM
this worked for me on ubuntu 7.10
Escrito por dmontalvao:
Ok. I decided to make a short summary on what I did with all the help u guys gave.
Credits should go on:
Shawn B.
omvargas
Special thanks are due to to all the others that contributed to this thread!
Installing Labview 8.0 on Gusty Gibbon (Ubuntu 7.10):
1) On terminal window, install libdb1-compat:
sudo apt-get install libdb1-compat
2) Install Labview 8.0 from its install directory with default installation directories:
./INSTALL
Now the following may contain redundant steps, but worked fine for me:
3) cd /usr/local/natinst/LabVIEW-8.0/linux
(instead of step 4a u can try step 4b)
4a) cp libLVMesaGL.so.3 libOSMesa.so.4
4b) ln -s libLVMesaGL.so.3 libOSMesa.so.4
5) mkdir -p /usr/local/lib/linux/
6) cd /usr/local/lib/linux
7) ln -s /usr/local/natinst/LabVIEW-8.0/linux/libLVMesaGL.so.3
😎 ln -s /usr/local/natinst/LabVIEW-8.0/linux/libOSMesa.so.4
I suppose step 7 is redundant and that step 4a can be replaced by 4b, but this is how I orginally made it and it worked out for me.
Hope this helps!
Cheers! 😉Message Edited by dmontalvao on 10-31-2007 06:16 PM
Message Edited by dmontalvao on 10-31-2007 06:18 PM
02-12-2008 01:08 PM
02-23-2009 11:17 AM
Labview 8.5 installed fine on x86 machines running Ubuntu Intrepid, but AMD64 machines ran into problems: "error while loading shared libraries: libz.so.1"
Installing the 32 bit compatibility libraries listed here solved the issue:
https://answers.launchpad.net/ubuntu/+question/47295
In summary:
sudo aptitude install ia32-libs lib32asound2 util-linux libc6-i386
03-05-2009 05:55 PM
I have it installed and running here. I've only tested it with a simple vi. I'll note some of the steps I took in case it might help someone. Stuff in bold is commands I gave at the terminal.List isn't complete. I wouldn't do it this way again, but I thought y'all might like to have a laugh at my expense.
sudo apt-get install libdb1-compat
Why the heck not?
mv Desktop/LabVIEWProDevSys_Linux.zip LabVIEW/
cd LabVIEW/unzip LabVIEWProDevSys_Linux.zip
sudo apt-get install rpm
This, I later found to be unnecessary.
sudo ./INSTALL
Blargh!
chmod +x INSTALL
sudo ./INSTALL
What the are you complaining about now? What the heck is rpmq?
sudo apt-get install rpmq
Nothing
apt-cache search rpmq
Nobody knows.
sudo ./INSTALL
ls
ls bin/
cd bin/
ls
Aha!
chmod +x cpio rpmq rpm2cpio rpm
Is that an install script I see or instructions?
cat INSTALL.norpm
Inconclusive, may as well try and run it.
chmod +x INSTALL.norpm
./INSTALL.norpm
Sad day 😞
cd ..
./INSTALL
Blargh!
sudo ./INSTALL
It did complain a lot even, on the final install attempt. It didn't install any Icons. But when I invoked "labview" from the command line it fired up. I built and ran a simple vi, as a test, without problems.
System is Ubuntu 8.04 Hardy I'm still stuck on 2.6.24-19-generic #1 SMP Wed Jun 18 14:43:41 UTC 2008 i686 GNU/Linux for the moment.
04-04-2009 05:42 PM