Created
March 8, 2017 17:21
-
-
Save oysstu/33aff54fe1192cada2159827f1564290 to your computer and use it in GitHub Desktop.
Installation of LabVIEW 2016 on debian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# apt install alien | |
# sudo mount LabVIEW2016.iso /media/iso | |
# Convert to debian packages | |
find /media/iso -name '*x86_64.rpm' -exec fakeroot alien -d -k --scripts {} + | |
find /media/iso -name '*noarch.rpm' -exec fakeroot alien -d -k --scripts {} + | |
# Install packages | |
find . -name '*.deb' -exec sudo alien -i --scripts {} + | |
# Installs microsoft fonts (no effect?) | |
apt-get install msttcorefonts | |
# Installs transcoded fonts (for non-english layouts) | |
apt-get install xfonts-75dpi-transcoded xfonts-100dpi-transcoded |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment