diff --git a/knoppix-remastering/hints/package_size_list b/knoppix-remastering/hints/package_size_list new file mode 100755 index 0000000..dbeafe8 --- /dev/null +++ b/knoppix-remastering/hints/package_size_list @@ -0,0 +1 @@ +dpkg-query -W --showformat ='${Installed-Size} ${Package} ${Status} \n' | grep -v deinstall | cut -c 2- | sort -n diff --git a/knoppix-remastering/hints/remove_startup_info_page.txt b/knoppix-remastering/hints/remove_startup_info_page.txt new file mode 100755 index 0000000..5fc5570 --- /dev/null +++ b/knoppix-remastering/hints/remove_startup_info_page.txt @@ -0,0 +1 @@ +rm bootfs/index*.html diff --git a/knoppix-remastering/local.conf.d/chroot_scripts.d/boot_setup.sh b/knoppix-remastering/local.conf.d/chroot_scripts.d/boot_setup.sh new file mode 100755 index 0000000..00cf2b4 --- /dev/null +++ b/knoppix-remastering/local.conf.d/chroot_scripts.d/boot_setup.sh @@ -0,0 +1,23 @@ +KVERSION=$(readlink /boot/vmlinuz) +KVERSION=${KVERSION#vmlinuz-} + +# configure grub + +[ -d /boot/grub ] || mkdir -p /boot/grub + +echo " +timeout 3 + +title Silicann - ein neuronales Netz + kernel /boot/vmlinuz-${KVERSION} root=/dev/hdc + initrd /boot/initrd-${KVERSION} +" >/boot/grub/menu.lst + + +# configure mkinitrd +sed -i 's/^ROOT=.*$/ROOT=iso9660/' /etc/mkinitrd/mkinitrd.conf +sed -i 's/^MODULES=.*$/MODULES=dep/' /etc/mkinitrd/mkinitrd.conf + +# create initrd +mkinitrd -o /boot/initrd-${KVERSION} ${KVERSION} + diff --git a/knoppix-remastering/local.conf.d/chroot_scripts.d/comedi_install.sh b/knoppix-remastering/local.conf.d/chroot_scripts.d/comedi_install.sh new file mode 100755 index 0000000..7a6b698 --- /dev/null +++ b/knoppix-remastering/local.conf.d/chroot_scripts.d/comedi_install.sh @@ -0,0 +1,37 @@ +KVERSION=$(readlink /boot/vmlinuz) +KVERSION=${KVERSION#vmlinuz-} + +if [ -e /usr/local/lib/libcomedi.so ] + then echo " comedi is already installed" + else old_pwd=$(pwd) + cd /opt + tar xzf src/comedi-*.tar.gz + tar xzf src/comedilib-*.tar.gz + + # install comedi + # install comedilib + # refresh module dependencies + + cd /opt/comedi-* + ./configure --with-linuxdir=/usr/src/linux --with-kernel-release=${KVERSION} --disable-pcmcia && \ + make && \ + make install && \ + cd /opt/comedilib-* && \ + ./configure && \ + make && \ + make install && \ + cd "$old_pwd" + fi + +# update module dependencies +KVERSION=$(readlink /boot/vmlinuz) +KVERSION=${KVERSION#vmlinuz-} +depmod -a "$KVERSION" + +# update init-links for module loading +update-rc.d comedi defaults + +# update library dependencies +ldconfig + +# if something fails, then the marker file /usr/local/lib/libcomedi.so is not created diff --git a/knoppix-remastering/local.conf.d/chroot_scripts.d/install_package_files.sh b/knoppix-remastering/local.conf.d/chroot_scripts.d/install_package_files.sh new file mode 100755 index 0000000..d09093a --- /dev/null +++ b/knoppix-remastering/local.conf.d/chroot_scripts.d/install_package_files.sh @@ -0,0 +1,6 @@ +# install all debian packages from /packages + +for a in /packages/*.deb + do dpkg -i "$a" + done + diff --git a/knoppix-remastering/local.conf.d/chroot_scripts.d/link_mesa_lib.sh b/knoppix-remastering/local.conf.d/chroot_scripts.d/link_mesa_lib.sh new file mode 100755 index 0000000..3ac30e9 --- /dev/null +++ b/knoppix-remastering/local.conf.d/chroot_scripts.d/link_mesa_lib.sh @@ -0,0 +1,6 @@ +# liblvrt (LabView runtime engine) expects libOSMesa.so.4, but requires symbols from libOSMesa.so.6 +# so we just install v6 and add some links + +ln -sfn libOSMesa32.so.6 /usr/lib/libOSMesa.so.4 +ldconfig + diff --git a/knoppix-remastering/local.conf.d/chroot_scripts.d/prevent_lp_module_loading.sh b/knoppix-remastering/local.conf.d/chroot_scripts.d/prevent_lp_module_loading.sh new file mode 100755 index 0000000..1d8210b --- /dev/null +++ b/knoppix-remastering/local.conf.d/chroot_scripts.d/prevent_lp_module_loading.sh @@ -0,0 +1,3 @@ +# this is necessary to load the comedi_parport module properly +# as (at least) linux 2.6.13 does not really unload parport +echo "install parport /bin/true" >/etc/modprobe.d/skip_parport diff --git a/knoppix-remastering/local.conf.d/chroot_scripts.d/select_windom_manager.sh b/knoppix-remastering/local.conf.d/chroot_scripts.d/select_windom_manager.sh new file mode 100755 index 0000000..071cf07 --- /dev/null +++ b/knoppix-remastering/local.conf.d/chroot_scripts.d/select_windom_manager.sh @@ -0,0 +1,13 @@ +# put your favourite window manager here +STARTUP_WM=kde + +# this one does not work - S00knoppix-autoconfig will always overwrite it +# echo "$STARTUP_WM" >/etc/sysconfig/desktop + +# this one does work - uuuugly! +FILE=/etc/rcS.d/S00knoppix-autoconfig +if grep -q '^\[ -n "$DESKTOP" \] || DESKTOP=' "$FILE" + then sed -i "/^\[ -n \"\$DESKTOP\" \] || DESKTOP=/s/DESKTOP=\".*$/DESKTOP=\"$STARTUP_WM\"/g" "$FILE" + else echo " setting of default window manager not found in $FILE" + fi + diff --git a/knoppix-remastering/local.conf.d/chroot_scripts.d/startup_prog.sh b/knoppix-remastering/local.conf.d/chroot_scripts.d/startup_prog.sh new file mode 100755 index 0000000..b2c67b5 --- /dev/null +++ b/knoppix-remastering/local.conf.d/chroot_scripts.d/startup_prog.sh @@ -0,0 +1,36 @@ +# run a program as soon, as the window manager is ready +# AND do not open the knoppix info page with a browser + +STARTUP_PROG=/cdrom/silicann/start.sh +BASH_HEADER='#!/bin/sh' + + +# first: turn off info page autostart +sed -i '/^ln .*Autostart/showindex.desktop/s/^/#/' /etc/X11/Xsession.d/45xsession + + +# now select "our" autostart program +# do it for different window managers + +################ icewm ################### +# does not really work +FILE=/etc/X11/icewm/startup +( + echo "$BASH_HEADER" + echo "$STARTUP_PROG" +) >"$FILE" +chmod +x "$FILE" + + +################ kde ################### +# works +FILE=/usr/share/autostart/sili9.desktop +( + echo "[Desktop Entry]" + echo "Name=Silimann9 - Demo" + echo "Exec=$STARTUP_PROG" + echo "Type=Application" + echo "Icon=html" + echo "Terminal=0" +) >"$FILE" + diff --git a/knoppix-remastering/local.conf.d/package-remove.lst.d/second_stage.lst b/knoppix-remastering/local.conf.d/package-remove.lst.d/second_stage.lst new file mode 100755 index 0000000..1d12820 --- /dev/null +++ b/knoppix-remastering/local.conf.d/package-remove.lst.d/second_stage.lst @@ -0,0 +1,66 @@ +ace-of-penguins +apache2-utils +enigma +enigma-data +ethereal +ethereal-common +etherwake +ettercap-common +ettercap-gtk +fortune-mod +fortunes-min +gaim-data +gcj-3.3 +gimp-data +gmessage +gnuchess +gocr +gq +gqcam +gtans +httptunnel +hunt +imaze +iptraf +lftp +libapr0 +libgcj4-dev +libgimp2.0 +libgimpprint1 +libwine +libwine-print +macutils +madwifi-modules-2.6.12 +mobilemesh +mozilla-firefox +mozilla-firefox-locale-de +mozilla-firefox-locale-de-de +mozilla-thunderbird +mozilla-thunderbird-locale-de +mozilla-thunderbird-offline +mtr +netcat +netcat6 +netpipe-tcp +netpipes +ntfsprogs-knoppix +ntpdate +nxclient +pppconfig +pppoe +pppstatus +pptp-linux +print-utils-pfeifle +rdate +rsync +scli +smbclient +smbfs +tcpdump +tethereal +urlview +xbattle +xboard +xboing +xgalaga +xskat diff --git a/knoppix-remastering/local.conf.d/package-remove.lst.d/stuff.lst b/knoppix-remastering/local.conf.d/package-remove.lst.d/stuff.lst new file mode 100755 index 0000000..8001271 --- /dev/null +++ b/knoppix-remastering/local.conf.d/package-remove.lst.d/stuff.lst @@ -0,0 +1,367 @@ +a2ps +aalib-bin +akregator +alevt +alien +apache +apache-common +apache-utils +ark +artwiz-cursor +atmel-firmware +audacity +avm-firmware +binutils-dev +bochsbios +brltty +cabextract +capiutils +cdbackup +cdda2wav +cddb +cdparanoia +cdrdao +cdrecord +chromium +chromium-data +colorgcc +comerr-dev +configure-xawtv +cpuburn +cupsconfig-knoppix +cupsys +cupsys-bsd +cupsys-client +dbus-qt-1 +dict +ding +dump +dvd+rw-tools +dvdrecord +dvgrab +efax +efax-gtk +elinks +enscript +esound-common +fb-music-low +firewall-knoppix +fluxbox +foomatic-bin +foomatic-db +foomatic-db-engine +foomatic-db-gimp-print +foomatic-db-hpijs +foomatic-filters +freenx +frozen-bubble +frozen-bubble-data +ftpd +gaim +giflib-bin +giflib3g +gimp +gphoto2 +gpsdrive +groff +gs-common +gs-esp +gscanbus +gsfonts-x11 +gsm-utils +gtkam +gv +hostap-modules-2.6.12 +hostap-utils +hostapd +hpijs +ibod +ijsgimpprint +imagemagick +ipchains +ipppd +ipsec-tools +ipw2100-modules-2.6.12 +ipw2200-modules-2.6.12 +ipx +isdn-config +isdnactivecards +isdntool-knoppix +isdnutils-base +isdnutils-xtools +isdnvboxclient +juk +k3b +k3blibs +kaddressbook +kaffeine +kalarm +kamera +kandy +kappfinder +karm +kasteroids +kate +kate-plugins +katomic +kbattleship +kcalc +kcharselect +kcontrol +kcron +kdat +kde-i18n-de +kde-i18n-es +kde-i18n-fr +kde-i18n-it +kde-i18n-ja +kde-i18n-nl +kde-i18n-pl +kde-i18n-ru +kde-i18n-tr +kde-services-knoppix +kdeaddons-kfile-plugins +kdeadmin-kfile-plugins +kdebase +kdebase-bin +kdebase-data +kdebase-kio-plugins +#kdebluetooth +kdegraphics-kfile-plugins +kdelibs-bin +kdelibs-data +kdelibs4 +kdemultimedia-kfile-plugins +kdenetwork-kfile-plugins +kdepasswd +kdepim-kfile-plugins +kdepim-kio-plugins +kdeprint +kdeservicemenus-knoppix +kdesktop +kdessh +kdf +kdiff3 +kdm +kfax +kfind +kfloppy +kget +kghostview +kgpgcertmanager +khelpcenter +khexedit +kicker +kiconedit +kismet +klaptopdaemon +klipper +kmahjongg +kmail +kmailcvt +kmenuedit +kmix +knode +knoppix-customize +knoppix-installer +knoppix-terminalserver +knotes +kolourpaint +konq-plugins +konqueror +konqueror-nsplugins +konsole +konsolekalendar +kontact +kooka +korganizer +kpackage +kpager +kpersonalizer +kpf +kpilot +kppp +krdc +kreversi +krfb +ksmserver +ksnapshot +ksokoban +ksplash +kstars +kstars-data +ksync +ksysguard +ksysv +kteatime +ktimer +ktip +ktnef +ktuberling +kuickshow +kuser +kvdr +kview +kviewshell +kwifimanager +kwin +kxconfig +larswm +libao2 +libapache-mod-php4 +libapache-mod-ssl +libarts1 +libaudio-dev +libavc1394-0 +libcapi20-2 +libdbd-mysql-perl +libdbi-perl +libesd0 +libesd0-dev +libfam-dev +libgd-gif1 +libgphoto2-2 +libgphoto2-port0 +libgsmme1c102 +libiw27 +libiw28 +libkcal2a +libkdeedu1 +libkdegames1 +libkdenetwork2 +libkdepim1 +libkleopatra0a +libkonq4 +libkpimexchange1 +libkpimidentities1 +libkrb5-dev +libkscan1 +libksieve0 +libktnef1 +liblircclient0 +libmal1 +libmimelib1a +libncp +libnet-daemon-perl +libnet-perl +libnewt-utf8-0 +libnxcomp0 +libnxcompext0 +libopenal0 +libpam-ncp +libpisock8 +libplrpc-perl +libqt3-compat-headers +libqt3-headers +libqt3-mt-dev +libquicktime1 +libsane +libsane-extras +libwine-twain +libwmf-bin +libwmf0.2-7 +linneighborhood +lisa +lrzsz +mgp +minicom +mkisofs +modemlink-knoppix +mpg321 +mt-st +mysql-client +mysql-server +ncpfs +nessus +#nessus-plugins +nessusd +netpbm +netris +network-setup-knoppix +nfs-kernel-server +nis +nmap +nparted +nxagent +nxdesktop +nxlibs +nxproxy +nxssh +nxtunnel-client +nxtunnel-server +nxviewer +openoffice-de-en +parted-bf +pcmcia-cs +php4 +php4-common +php4-mysql +pia +pilot-link +playvideodisk-knoppix +pnm2ppa +poster +pppdcapiplugin +pppoeconf +psutils +python-tk +python2.3-tk +qemu +qt3-dev-tools +qtparted +radio +rpm +rxvt-beta +s3switch +sane +sane-utils +sash +scantv +scribus +secpolicy +shaper +smpeg-xmms +sndconfig-knoppix +speedtouch +squid +squid-common +startnessus-knoppix +statserial +tftpd-hpa +thttpd +tidy +tnef +trans-de-en +transfig +type1inst +unzoo +v4l-conf +vcdimager +vcdtools +vdr +vgabios +vimpart +vorbis-tools +vpnc +wavemon +wavtools +wine +wine-utils +winesetuptk +wipe +wireless-tools +wlcardconfig-knoppix +wordtrans-data +xawtv +xawtv-plugins +xfig +xkbset +xlibs-static-pic +xmms +xmms-cdread +xmms-goom +xmms-volnorm +xsane +xtel +xtv +zr364xx-modules-2.6.12 diff --git a/knoppix-remastering/local.conf.d/package-remove.lst.d/third_stage.lst b/knoppix-remastering/local.conf.d/package-remove.lst.d/third_stage.lst new file mode 100755 index 0000000..c83f779 --- /dev/null +++ b/knoppix-remastering/local.conf.d/package-remove.lst.d/third_stage.lst @@ -0,0 +1,128 @@ +3270-common +aalib1 +airsnort +anacron +apt-show-versions +aptitude +arj +arpwatch +atitvout +bacula-client +bacula-common +bacula-console +bacula-fd +bb +bind9 +bind9-host +bing +bittorrent +bluez-firmware +bluez-utils +bridge-utils +chkrootkit +cvs +dante-client +dc +dd-rescue +debfoster +debootstrap +dictionaries-common +dlint +dnsutils +dosfstools +emacs21 +emacs21-bin-common +emacs21-common +emacsen-common +fdflush +fdutils +finger +ftp +gettext-el +gpm +gprsconnect-knoppix +groff-base +hexedit +info +ircii +jackd +java-common +joe +k3b-defaults +k3b-i18n +kphone +lde +lha +libapt-pkg-perl +libbind9-0 +libdm0 +libjack0.80.0-0 +libmysqlclient12 +libmysqlclient14 +libspeex1 +libxine1 +loadlin +loop-aes-utils +lynx +lzop +man-db +manpages +manpages-de +manpages-dev +mbr +mikmod +mkbootfloppy-knoppix +modemtool-knoppix +mpack +mtools +mutt +mysql-common +ndiswrapper-modules-2.6.12 +ndiswrapper-utils +nedit +nfs-common +ntfsprogs +nvtv +openhackware +partimage +partimage-server +playmidi +portmap +ppp +proll +rdesktop +reportbug +screen +sendfile +slrn +sox +speex +sslwrap +strace +stunnel +syslinux +tasksel +telnet-ssl +telnetd-ssl +tftp +traceroute +tsocks +unarj +vim-gtk +vim-scripts +whois +wpasupplicant +wvdial +x3270 +xaos +xchat +xchat-common +xdelta +xfonts-75dpi +xfonts-75dpi-transcoded +xfsdump +xfsprogs +xine-ui +xnest +xsane-common +zile diff --git a/knoppix-remastering/local.conf.d/template-tree.d/etc/init.d/comedi b/knoppix-remastering/local.conf.d/template-tree.d/etc/init.d/comedi new file mode 100755 index 0000000..48272d0 --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/etc/init.d/comedi @@ -0,0 +1,81 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: comedi +# Required-Start: +# Should-Start: haldaemon +# Required-Stop: +# Default-Start: 3 5 +# Default-Stop: 0 1 2 6 +# Description: Start Name Service Cache Daemon +### END INIT INFO + +#exit + +set -u +set -e +#set -x + +MODPR=/sbin/modprobe +COM_CON=/usr/local/sbin/comedi_config +COM_CAL="/usr/local/bin/comedi_calibrate --calibrate" +#OPTIONS="--read-buffer 32 --write-buffer 32" +# modules to load - one module (with parameters) per line +COMEDI_MODULES="comedi_parport 0x378" +# erstmal deaktivieren +# cb_pcidda +# ni_pcimio +# comedi_test" +# parport wird extra geladen, da es einen Parameter braucht + +ACTION=start +[ $# -gt 0 ] && ACTION="$1" + +case "$ACTION" in + stop ) + if lsmod | grep -q comedi + then echo "Comedi is active ..." + else echo "Comedi is not active ..." + exit 3 + fi + echo -e "$COMEDI_MODULES" | while read mod opt; do $MODPR -r $mod; done + $MODPR -r comedi + echo "Comedi-Module wurden entfernt" + ;; + restart|start ) + lsmod | grep -q comedi && "$0" stop + $MODPR -r lp parport_pc ppdev parport || true + sleep 1 + echo "Install comedi modules ..." + devnum=0; + echo -e "$COMEDI_MODULES" | while read mod opt + do echo -n "Configuring /dev/comedi$devnum as $mod ..." + # create device nod if necessary + [ -e "/dev/comedi$devnum" ] || mknod "/dev/comedi$devnum" c 98 "$devnum" + $MODPR $mod || true + sleep 1 + if $COM_CON /dev/comedi$devnum $mod $opt + then chgrp users /dev/comedi$devnum + chmod 660 /dev/comedi$devnum + echo -e "\t OK" + else echo -e "\t Failure!" + fi + devnum=$((devnum+1)) + done + maxC=$devnum + devnum=0 + while [ $devnum -lt $maxC ] + do $COM_CAL -f /dev/comedi$devnum || true + # errors may occour, if the device can not be calibrated (e.g. parport) ... + devnum=$((devnum+1)) + done + ;; + status ) + lsmod | grep -q comedi && exit 0 + exit 1 + ;; + * ) + echo "Syntax: $0 { start | stop | restart | status }" + echo + exit 1 + ;; + esac diff --git a/knoppix-remastering/local.conf.d/template-tree.d/opt/src/comedi-0.7.70.tar.gz b/knoppix-remastering/local.conf.d/template-tree.d/opt/src/comedi-0.7.70.tar.gz new file mode 100755 index 0000000..09eb2b6 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/opt/src/comedi-0.7.70.tar.gz differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/opt/src/comedilib-0.7.22.tar.gz b/knoppix-remastering/local.conf.d/template-tree.d/opt/src/comedilib-0.7.22.tar.gz new file mode 100755 index 0000000..024dc83 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/opt/src/comedilib-0.7.22.tar.gz differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/packages/libosmesa6_6.4.1-0.1_i386.deb b/knoppix-remastering/local.conf.d/template-tree.d/packages/libosmesa6_6.4.1-0.1_i386.deb new file mode 100755 index 0000000..6e01ba8 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/packages/libosmesa6_6.4.1-0.1_i386.deb differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGL.a b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGL.a new file mode 100755 index 0000000..1fba627 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGL.a differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGL.so.1.2 b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGL.so.1.2 new file mode 100755 index 0000000..7d97c5d Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGL.so.1.2 differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLU.a b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLU.a new file mode 100755 index 0000000..faec9cf Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLU.a differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLU.so.1.3 b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLU.so.1.3 new file mode 100755 index 0000000..9c77ac4 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLU.so.1.3 differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLw.a b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLw.a new file mode 100755 index 0000000..6bf3c2f Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLw.a differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLw_pic.a b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLw_pic.a new file mode 100755 index 0000000..74cc33f Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libGLw_pic.a differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libX11.a b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libX11.a new file mode 100755 index 0000000..c6821dc Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libX11.a differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libX11.so.6.2 b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libX11.so.6.2 new file mode 100755 index 0000000..528adcb Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/lib/libX11.so.6.2 differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/Analysis-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/Analysis-errors.txt new file mode 100755 index 0000000..c3b5fa4 --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/Analysis-errors.txt @@ -0,0 +1,901 @@ + + + + + + + +Analysis: Too many decimal points. + + +Analysis: Not a valid function. + + +Analysis: Incomplete function expression. + + +Analysis: Incomplete expression. + + +Analysis: Variables output problem. + + +Analysis: Inconsistency in variables or numbers. + + +Analysis: Contains more than one variable. + + +Analysis: Contains variables. + + +Analysis: Wrong variable name. + + +Analysis: Wrong letter. + + +Analysis: Wrong function call. + + +Analysis: Wrong number format. + + +Analysis: Wrong decimal point. + + +Analysis: Bracket problem at the end. + + +Analysis: Bracket problem at the beginning. + + +Analysis: Bracket problem. + + +Analysis: Argument out of range [0,1). + + +Analysis: Non-unique variables. + + +Analysis: Signal length not a power of two and >= 4. + + +Analysis: Signal length not a prime and >= 5. + + +Analysis: Signal length not a power of two. + + +Analysis: Signal length not a multiple of number. + + +Analysis: Invalid window length. + + +Analysis: Invalid time increment. + + +Analysis: Argument out of range [0,100]. + + +Analysis: Empty array. + + +Analysis: n < k + + +Analysis: Argument out of range [0,1]. + + +Analysis: Argument out of range (0,1]. + + +Analysis: Negative argument. + + +Analysis: Not exactly two variables. + + +Analysis: Derivative out of range. + + +Analysis: Parameter problem. + + +Analysis: No variables in expression. + + +Analysis: Not exactly two functions. + + +Analysis: Different parameters. + + +Analysis: Nonpositive number. + + +Analysis: Ill conditioned system + + +Analysis: Vectors have different dimensions or empty vectors. + + +Analysis: Maximum does not exist. + + +Analysis: No valid point. + + +Analysis: m >= n >= 0 is violated or the matrix of derivatives has the wrong dimension. + + +Analysis: The Levenberg Marquardt VI has failed. + + +Analysis: Wrong model equation. + + +Analysis: Not exactly one variable. + + +Analysis: No optimum found. + + +Analysis: Invalid triplet (a,b,c). + + +Analysis: No root found. + + +Analysis: Wrong dimension of start. + + +Analysis: Nonpositive accuracy or nonpositive delta x(h). + + +Analysis: Both function values have the same sign. + + +Analysis: Left point greater than right point. + + +Analysis: Right point is a root. + + +Analysis: Left point is a root. + + +Analysis: Multiple roots. + + +Analysis: Singular eigenvector matrix. + + +Analysis: Empty X0. + + +Analysis: A and X0 have different dimensions. + + +Analysis: Matrix vector conflict. + + +Analysis: Nonpositive accuracy. + + +Analysis: Nonpositive step rate. + + +Analysis: Wrong input, Cash Karp method. + + +Analysis: Wrong input, Runge Kutta method. + + +Analysis: Wrong input, Euler method. + + +Analysis: Not a graphs file. + + +Analysis: Not a valid path. + + +Analysis: Negative distance. + + +Analysis: Number of color palettes out of range. + + +Analysis: Number of contours out of range. + + +Analysis: Discrepancy between function, variables and coordinates. + + +Analysis: Syntax error of parser. + + +Analysis: The starting error codes of engineering math. + + +Analysis: Serious algorithm failure. Call National Instruments support. + + +Analysis: The format of the data file for the wavelet filter bank is invalid. + + +Analysis: Cannot open the data file for the wavelet filter bank. + + +Analysis: The wavelet packet session or handle must refer to a full tree. + + +Analysis: The wavelet packet handle or session is invalid or the data space it refers to does not contain the necessary information. + + +Analysis: Invalid dimensions of the wavelet coefficients. + + +Analysis: Invalid optional parameter to find the optimal path. + + +Analysis: The trend level must be no less than zero and no greater than 1.0. + + +Analysis: The time step must be greater than zero. + + +Analysis: The node must be a terminal node. + + +Analysis: The node must not be a terminal node. + + +Analysis: The path or node string must contain only "0" or "1". + + +Analysis: The lengths of the analysis filters or synthesis filters must be greater than zero. + + +Analysis: The refinement level for computing the mother wavelet must be greater than zero. + + +Analysis: Shift must be 0 or 1. + + +Analysis: Shift must be no less than zero and less than the decimation factor or interpolation factor. + + +Analysis: The interpolation factor must be greater than or equal to two. + + +Analysis: The decimation factor must be greater than or equal to two. + + +Analysis: The scale of the wavelet decomposition must be greater than zero. + + +Analysis: The selection of the wavelet type is invalid. + + +Analysis: The largest order must be greater than the initial order and no greater than two-thirds of the length of the input signal. + + +Analysis: The initial order must be no less than 1. + + +Analysis: The AR order must be greater than or equal to the number of complex sinusoids. + + +Analysis: The number of complex sinusoids must be greater than zero and no greater than two-thirds of the length of the input signal. + + +Analysis: The order for the AR model must be greater than zero and no greater than two-thirds of the length of the input signal. + + +Analysis: The index of the 2D array stored in the refnum is out of range. + + +Analysis: The refnum does not support this operation. + + +Analysis: The refnum is invalid. + + +Analysis: Failure to create the refnum. + + +Analysis: The parameters of the frequency information are invalid for further computation. + + +Analysis: The parameters of the window information are invalid for further computation. + + +Analysis: The dimensions of the kernel must be greater than zero and power of two values. The column size of the kernel must be 2^(ceil(log2(Ls-1))), where Ls is the length of the input signal. + + +Analysis: The variance of the Gaussian window must be greater than zero. + + +Analysis: The size of the window must be greater than zero. + + +Analysis: The number of terms must be greater than zero. + + +Analysis: The oversampling rate must be greater than or equal to one. + + +Analysis: The order must be greater than or equal to zero. + + +Analysis: The time interval must be a power of two. + + +Analysis: The time interval must be greater than zero. + + +Analysis: The selection for the enumerated data type parameter is invalid. + + +Analysis: The number of frequency bins must be greater than zero and a power of two. + + +Analysis: The sample rate must be greater than zero. + + +Analysis: The input signal is empty. + + +Analysis: CVI Could not create the required mutex. + + +Analysis: CVI Could not find specified function in the DLL + + +Analysis: CVI Could not load Spectral Measurement Toolset DLL + + +Analysis: Invalid SMT session handle. + + +Analysis: Incorrect averaging type specified. + + +Analysis: Incorrect type of the input spectrum data. + + +Analysis: You must specify either FFT bins or RBW. + + +Analysis: Sampling frequency should be greater than zero. + + +Analysis: The internal buffer is overflowed by input data. + + +Analysis: FFT size must be greater than zero. + + +Analysis: The zoom factor must be greater than zero. + + +Analysis: The specified time stamp is after the end of the limit. + + +Analysis: Values of the X array contained in the Limit Specification cluster are not monotonically increasing. + + +Analysis: Waveforms are not contiguous. + + +Analysis: Cannot align waveforms because their time stamps are separated by more than 10 times the duration of the longest waveform. + + +Analysis: Cannot align two waveforms with same dt if their samples are not clocked in-phase. + + +Analysis: Internal error: The number of threads attribute is less than zero. If the problem persists, contact National Instruments technical support. + + +Analysis: Internal error: The parameter struct pointer is Null, possibly because of changes to the calling VI block diagram. If the problem persists, contact National Instruments technical support. + + +Analysis: Internal error: The cursor struct pointer is Null, possibly because of a change to the calling VI block diagram. If the problem persists, contact National Instruments technical support. + + +Analysis: Internal error: The result pointer is Null, possibly because of changes to the calling VI block diagram. If the problem persists, contact National Instruments technical support. + + +Analysis: Failure initializing a critical section in measurement code, possibly due to low memory. If the problem persists, contact National Instruments technical support. + + +Analysis: An exception occurred in the measurement code, possibly due to low memory. If the problem persists, contact National Instruments technical support. + + +Analysis: Internal error: Invalid measurement ID number. Contact National Instruments technical support. + + +Analysis: Internal error: Two measurements share the same ID number. If the problem persists, contact National Instruments technical support. + + +Analysis: The edge number, pulse number, or cycle parameter value must be greater than zero. + + +Analysis: Internal error: The attribute number does not refer to a valid parameter. Check the input parameters reference levels, percent level settings, and state settings. + + +Analysis: Internal Error: The measurement session handle is invalid. If the problem persists, contact National Instruments technical support. + + +Analysis: Internal error: The requested measurement is not available. If the problem persists, contact National Instruments technical support. + + +Analysis: The period of the waveform is too short to perform the measurement. + + +Analysis: The result is not a number (NaN) or infinite. + + +Analysis: The histogram size parameter value is less than or equal to zero. + + +Analysis: The slew rate is infinite because the rise or fall time is zero. + + +Analysis: Illegal percent method parameter. Check the method enum input. + + +Analysis: The waveform dt parameter is <= 0. + + +Analysis: Illegal reference level units parameter. Check the ref units text ring input. + + +Analysis: Reference levels must satisfy: low ref <= mid ref <= high ref. + + +Analysis: The input waveform size is zero. + + +Analysis: Insufficient memory available for waveform measurement. + + +Analysis: The waveform did not have enough edges to perform this measurement. An edge is defined as a crossing of both the low and high reference levels. Check the signal length, reference levels, and ref level units. + + +Analysis: The amplitude of the waveform is zero, so the histogram method cannot be used. + + +Analysis: The waveform did not cross the mid reference level enough times to perform this measurement. Check the signal length, reference levels, and ref level units. + + +Analysis: Frequency not a multiple of (Sampling Rate)/Samples. + + +Analysis: The two time signal waveforms contain different dt. + + +Analysis: The two time signal waveforms contain different number of data points. + + +Analysis: At least one of the time signal waveforms does not contain the correct dt to continue the averaging process. + + +Analysis: At least one of the time signal waveforms does not contain the correct number of data points to continue the averaging process. + + +Analysis: The time signal waveform does not contain the correct dt to continue the averaging process. + + +Analysis: The time signal waveform does not contain the correct number of data points to continue the averaging process. + + +Analysis: The upper limit is less than the lower limit. + + +Analysis: Shifts: n is negative. + + +Analysis: The sample length is less than the window length. + + +Analysis: The window length is not positive. + + +Analysis: The time increment is not positive. + + +Analysis: The sample length is negative. + + +Analysis: The sample length is not positive. + + +Analysis: The input must be non-zero. + + +Analysis: The input must be greater than zero. + + +Analysis: Loss of Significance + + +Analysis: Feasible solution not found. + + +Analysis: The FFT size must be greater than zero. + + +Analysis: The start value wired to the Polynomial Real Zeros Counter VI is greater than the end value. + + +Analysis: The end value wired to the Polynomial Real Zeros Counter VI is a root. + + +Analysis: The start value wired to the Polynomial Real Zeros Counter VI is a root. + + +Analysis: The input polynomial coefficients are all zeros. + + +Analysis: Input parameters have at least one NaN element. + + +Analysis: The order must be greater than or equal to zero. + + +Analysis: The shifts must meet: |shifts| < samples. + + +Analysis: Parameter must meet the condition Top > Base + + +Analysis: The AR order must be greater than or equal to the number of complex sinusoids. + + +Analysis: The AR order must not be greater than two-thirds of the number of samples. + + +Analysis: The number of complex sinusoids must not be greater than two thirds of the number of samples. + + +Analysis: The AR order must be > 0. + + +Analysis: The number of complex sinusoids must be > 0. + + +Analysis: The size of the initial or final condition array is not correct. + + +Analysis: df must be > 0. + + +Analysis: The dual function does not exist. + + +Analysis: The Gabor coefficient array does not have the correct dimension. + + +Analysis: The order of the Gabor spectrogram must be >=0. + + +Analysis: The oversampling rate, N / dM, must be >=1. + + +Analysis: The length of the analysis or synthesis window must be evenly divisible by the number of frequency bins, N, which must be a power of 2. + + +Analysis: The length of the analysis or synthesis window must be evenly divisible by the Gabor time sampling interval, dM. + + +Analysis: Window length must be > 2 and a power of 2. + + +Analysis: The size of the input array and its Hilbert transform must be equal. + + +Analysis: Time increment must not be greater than (window length)/4. + + +Analysis: Window length must be > 4 and a power of 2. + + +Analysis: Time increment must not be greater than dM. + + +Analysis: dN or time interval must be greater than zero. + + +Analysis: Time increment must be greater than the (window length)/16 + + +Analysis: The seed is invalid. + + +Analysis: This functionality is not supported on this platform. + + +Analysis: The time points are not in ascending order. + + +Analysis: The resample point cannot be calculated with the signal behind that of the input. + + +Analysis: The filter buffer overflows. + + +Analysis: Reordering eigenvalues changed some complex ones. + + +Analysis: The eigenvalues cannot be reordered because some of them are too close. + + +Analysis: The logarithm of the input matrix cannot be computed. + + +Analysis: The input matrix is not positive definite. + + +Analysis: Matrices must have the same size. + + +Analysis: The number of samples must be greater than or equal to four. + + +Analysis: Input parameters has at least one element that is Inf, NaN, DBL_MAX, or DBL_MIN + + +Analysis: The input fundamental frequency or sampling rate is equal to zero. + + +Analysis: The information in IIR filter structure is not correct. + + +Analysis: The elements in the vector can not be all zero. + + +Analysis: The internal memory state of this function was not initialized correctly. + + +Analysis: The coefficients of the polynomial are invalid. + + +Analysis: The maximum number of iterations was exceeded. + + +Analysis: The selection is invalid. + + +Analysis: Divide by zero error. + + +Analysis: Negative number error + + +Analysis: Invalid number of dimensions or dependent variables + + +Analysis: The parameter to the beta function should be 0 < p < 1 + + +Analysis: The contingency table has a negative number. + + +Analysis: The number of categories or samples must be greater than one. + + +Analysis: The probability must be greater than or equal to zero and less than one. + + +Analysis: The probability must be between zero and one. + + +Analysis: The degree of freedom must be greater than zero and less than the length of the input sequence. + + +Analysis: All values in the first column of X matrix must be one. + + +Analysis: The interpolating function has a pole at the requested value. + + +Analysis: The x-values must be distinct. + + +Analysis: The Random Effect model was requested when the Fixed Effect model is required. + + +Analysis: The data is unbalanced. All cells must contain the same number of observations. + + +Analysis: There is an overflow in the calculation. + + +Analysis: The total number of data points must be equal to the product of levels/each factor * observations/cell. + + +Analysis: Zero observations were made at some level of a factor. + + +Analysis: The level of factors is outside the allowable range of some data. + + +Analysis: The number of levels is out of range. + + +Analysis: The system of equations cannot be solved because the input matrix is singular. + + +Analysis: The input matrix must be a square matrix. + + +Analysis: The number of columns in the first matrix is not equal to the number of rows in the second matrix or vector. + + +Analysis: The number of intervals must be > 0. + + +Analysis: The number of data points in the Y Values array must be greater than the order. + + +Analysis: The elements of the Y Values array must be nonzero and either all positive or all negative. + + +Analysis: The standard deviation must be greater than zero for normalization. + + +Analysis: The number of coefficients must be even for this filter. + + +Analysis: The number of coefficients must be odd for this filter. + + +Analysis: The rank of the filter must meet: 1 <= (2*rank + 1) <= size. + + +Analysis: The filter cannot be designed with the specified input values. + + +Analysis: The leakage coefficient, leak, and step-size parameter, u, must meet: 0 <= leak <= u. + + +Analysis: The step-size, u, must meet: 0 <= u <= 0.1. + + +Analysis: The attenuation value must be greater than the ripple amplitude. + + +Analysis: The final value must be > 0. + + +Analysis: The width must be > 0. + + +Analysis: The attenuation must be > 0. + + +Analysis: The ripple amplitude must be > 0. + + +Analysis: The following conditions must be met: 0 < f_low <= f_high <= fs/2. + + +Analysis: The decimating factor must meet: 0 < decimating factor <= samples. + + +Analysis: The order must be > 0. + + +Analysis: The cut-off frequency, fc, must meet: 0 <= fc <= fs/2. + + +Analysis: The upper value must be >= the lower value. + + +Analysis: The following condition must be met: 0 <= (index + length) < samples. + + +Analysis: The following condition must be met: 0 <= index < samples. + + +Analysis: dt must be > 0. + + +Analysis: dt must be >= 0. + + +Analysis: The following conditions must be met: 0 <= (delay + width) < samples. + + +Analysis: The width must meet: 0 < width < samples. + + +Analysis: The number of cycles must be > 0 and <= the number of samples. + + +Analysis: The duty cycle must be equal to or fall between 0 and 100: 0 <= duty cycle <= 100. + + +Analysis: The maximum allowable transform size has been exceeded. + + +Analysis: The size of the input array must be a power of two: size = 2^m, 0 < m < 23. + + +Analysis: The input arrays do not contain the correct number of data values for this function. + + +Analysis: The number of samples must be >= 3. + + +Analysis: The number of samples must be >= 2. + + +Analysis: The number of samples must be greater than or equal to 1. + + +Analysis: The number of samples must be >= 0. + + +Analysis: The number of samples must be > 0. + + +Analysis: The input sequences must be the same size. + + +Analysis: There is not enough memory to perform the specified routine. + + +Analysis: The matrix is rank deficient. + + +Analysis: The number of samples must be greater than zero. + + +Analysis: The matrix is singular. + + +Analysis: Matrices or vectors do not have the same size. + + +Analysis: LabVIEW cannot reorder the generalized eigenvalues. + + +Analysis: The computation result might be inaccurate. + + +Analysis: The sizes of the input arrays do not meet the specified conditions. + + +Analysis: The input standard deviation is invalid. + + +Analysis: The input polynomial is empty. + + +Analysis: Some frequencies violate Nyquist criteria. + + +Analysis: The input matrix has at least one element with a value of Inf or NaN. + + +Analysis: Frequency was coerced to the nearest multiple of (sampling rate)/samples. + + +Analysis: Waveforms are not overlapping. + + +Analysis: The averaging process was automatically restarted to respond to a change in the averaging parameters. + + +Analysis: Current and previous waveforms are not contiguous. + + +Analysis: Current and previous dt not equal. + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/IAK_SHARED-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/IAK_SHARED-errors.txt new file mode 100755 index 0000000..b3a596b --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/IAK_SHARED-errors.txt @@ -0,0 +1,217 @@ + + + + + + + +IAK_SHARED: (Hex 0x8ABC7001) Installed library is the wrong version. + + +IAK_SHARED: (Hex 0x8ABC7002) Client attempted to call a function on an unregistered library. + + +IAK_SHARED: (Hex 0x8ABC7003) Operation timed out. + + +IAK_SHARED: (Hex 0x8ABC7004) Syntax error. + + +IAK_SHARED: (Hex 0x8ABC7005) Stack overflowed. + + +IAK_SHARED: (Hex 0x8ABC7006) Unable to start service. + + +IAK_SHARED: (Hex 0x8ABC7007) Out of range. + + +IAK_SHARED: (Hex 0x8ABC7008) Object not found. + + +IAK_SHARED: (Hex 0x8ABC7009) Object already exists. + + +IAK_SHARED: (Hex 0x8ABC700A) Not found. + + +IAK_SHARED: (Hex 0x8ABC700B) Object or collection is not empty. + + +IAK_SHARED: (Hex 0x8ABC700C) Client attempted to call a registration function more than once. + + +IAK_SHARED: (Hex 0x8ABC700D) Invalid result type. + + +IAK_SHARED: (Hex 0x8ABC700E) Invalid operation. + + +IAK_SHARED: (Hex 0x8ABC700F) Invalid argument(s). + + +IAK_SHARED: (Hex 0x8ABC7010) Initialization failed. + + +IAK_SHARED: (Hex 0x8ABC7011) Write file operation failed. + + +IAK_SHARED: (Hex 0x8ABC7012) Read file operation failed. + + +IAK_SHARED: (Hex 0x8ABC7013) End of file. + + +IAK_SHARED: (Hex 0x8ABC7014) Failed to de-serialize. + + +IAK_SHARED: (Hex 0x8ABC7015) Unable to complete request. Connection failed. + + +IAK_SHARED: (Hex 0x8ABC7016) Operation cancelled. + + +IAK_SHARED: (Hex 0x8ABC7017) Buffer overflowed. + + +IAK_SHARED: (Hex 0x8ABC7018) Attempt to advertise service to Logos Classified Ads failed. + + +IAK_SHARED: (Hex 0x8ABC7019) Access denied. + + +IAK_SHARED: (Hex 0x8ABC701A) Buffer underflowed. + + +IAK_SHARED: (Hex 0x8ABC701B) File already exists. + + +IAK_SHARED: (Hex 0x8ABC701C) The provided refnum is invalid. + + +IAK_SHARED: (Hex 0x8ABC701D) A null refnum was provided as input. + + +IAK_SHARED: (Hex 0x8ABC7020) Unexpected OS exception occurred. + + +IAK_SHARED: (Hex 0x8ABC7021) Failed to load library. + + +IAK_SHARED: (Hex 0x8ABC7022) Class not found. + + +IAK_SHARED: (Hex 0x8ABC7023) No known value. + + +IAK_SHARED: (Hex 0x8ABC7024) Invalid locale. + + +IAK_SHARED: (Hex 0x8ABC7030) Invalid UTF8 encoding sequence. + + +IAK_SHARED: (Hex 0x8ABC7031) Citadel ran out of shared memory. + + +IAK_SHARED: (Hex 0x8ABC7032) Badly formatted GUID string. + + +IAK_SHARED: (Hex 0x8ABC7033) Bad Type + + +IAK_SHARED: (Hex 0x8ABCB001) Generic security error. + + +IAK_SHARED: (Hex 0x8ABCB002) Version is not supported by peer. + + +IAK_SHARED: (Hex 0x8ABCB003) Account is locked. + + +IAK_SHARED: (Hex 0x8ABCB004) Logos session timed out or is locked out by other users. + + +IAK_SHARED: (Hex 0x8ABCB005) The specified user does not exist. + + +IAK_SHARED: (Hex 0x8ABCB006) The specified group does not exist. + + +IAK_SHARED: (Hex 0x8ABCB007) Duplicate name. + + +IAK_SHARED: (Hex 0x8ABCB008) Message is corrupted. + + +IAK_SHARED: (Hex 0x8ABCB009) The domain server failed to complete a function. + + +IAK_SHARED: (Hex 0x8ABCB00A) Cannot delete built-in principals. + + +IAK_SHARED: (Hex 0x8ABCB00B) Invalid password. + + +IAK_SHARED: (Hex 0x8ABCB00C) Not a local computer. + + +IAK_SHARED: (Hex 0x8ABCB00D) Not an administrator. + + +IAK_SHARED: (Hex 0x8ABCB00E) Domain is not defined. + + +IAK_SHARED: (Hex 0x8ABCB00F) Domain already exists. + + +IAK_SHARED: (Hex 0x8ABCB010) Password is too short or too long. + + +IAK_SHARED: (Hex 0x8ABCB011) Machine is denied access. + + +IAK_SHARED: (Hex 0x8ABCB012) Requested data denied. + + +IAK_SHARED: (Hex 0x8ABCB020) Cannot lock account. + + +IAK_SHARED: (Hex 0x8ABCB021) Network connection timed out. + + +IAK_SHARED: (Hex 0x8ABCB022) File corrupted. + + +IAK_SHARED: (Hex 0x8ABCB023) Network is disconnected. + + +IAK_SHARED: (Hex 0x8ABCB024) Requested data not found. + + +IAK_SHARED: (Hex 0x8ABCB025) Operation cancelled by user. + + +IAK_SHARED: (Hex 0x8ABCB026) Attempt to advertise service to Logos Classified Ads failed. + + +IAK_SHARED: (Hex 0x8ABCB030) Message size less than one block. + + +IAK_SHARED: (Hex 0x8ABCB031) Failed to generate random number. + + +IAK_SHARED: (Hex 0x8ABCB032) Passwords do not match. + + +IAK_SHARED: (Hex 0x8ABCB034) Password too short. + + +IAK_SHARED: (Hex 0x8ABCB035) Password too long. + + +IAK_SHARED: (Hex 0x8ABCB036) Domain already added. + + +IAK_SHARED: (Hex 0x8ABCB037) No more principals. + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/LV_RemotePanelConnection.lic b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/LV_RemotePanelConnection.lic new file mode 100755 index 0000000..946dcf9 --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/LV_RemotePanelConnection.lic @@ -0,0 +1 @@ +qCý{›é^sog-bŸmªY‹…¹‡ ±ï8#( 6@¢y@˳§ài˜Y¤|ñŠÛ¢ï:òXm \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/LabVIEW b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/LabVIEW new file mode 100755 index 0000000..7a8de80 --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/LabVIEW @@ -0,0 +1,172 @@ + + + + + + + +LabVIEW Simulation Module: The value of the Decimation parameter for the Collector function must be greater than or equal to 1. + + +LabVIEW Simulation Module: The number of elements in the input array does not equal the number of columns in the gain matrix. + + +LabVIEW Simulation Module: You cannot change the maximum delay while the simulation is running. + + +LabVIEW Simulation Module: For fixed step-size ODE solvers, the delay must be less than or equal to the specified maximum delay. + + +LabVIEW Simulation Module: The specified parameter is a vector. Enter a vector value. + + +LabVIEW Simulation Module: The specified parameter is a scalar. Enter a scalar value. + + +LabVIEW Simulation Module: The parameter name is not in the specified parameter list. + + +LabVIEW Simulation Module: The given State Derivatives are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given Outputs are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given Inputs are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given States are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given Outputs are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given Inputs are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given States are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The Simulation initial time cannot be greater than or equal to the final time. + + +LabVIEW Simulation Module: The Linearizer detected an error while computing the Jacobian Matrix. + + +LabVIEW Simulation Module: The ODE solver could not factor the Jacobian Matrix. + + +LabVIEW Simulation Module: The ODE solver could not compute the Jacobian Matrix. + + +LabVIEW Simulation Module: You can linearize only simulation subsystems. + + +LabVIEW Simulation Module: The simulation diagram returned NaN to the ODE solver. + + +LabVIEW Simulation Module: The simulation diagram returned an overflow to the ODE solver. + + +LabVIEW Simulation Module: An overflow occurred in the ODE solver. + + +LabVIEW Simulation Module: The time step must be between the minimum and maximum time steps. + + +LabVIEW Simulation Module: The minimum time step must be less than or equal to the maximum time step. + + +LabVIEW Simulation Module: The absolute tolerance and relative tolerance cannot both be zero. + + +LabVIEW Simulation Module: The discrete time step is not an integer multiple of the time step. + + +LabVIEW Simulation Module: The simulation time step cannot be zero. + + +LabVIEW Simulation Module: Invalid use of the Linearize Subsystem dialog box. The Linearize Subsystem dialog box must be used only on subsystem VIs. + + +LabVIEW Simulation Module: You can use the Linearize Subsystem dialog box only if you have created a VI under My Computer in the Project Explorer. + + +LabVIEW Simulation Module: The ODE solver Newton Iteration did not converge at the minimum time step. + + +LabVIEW Simulation Module: The ODE solver cannot meet the error tolerance using the minimum time step. + + +LabVIEW Simulation Module: The simulation time step is negative or zero. + + +LabVIEW Simulation Module: The Execution Mode is not consistent with the specified discrete integration method. + + +LabVIEW Simulation Module: The sample rate divisor is negative or zero. + + +LabVIEW Simulation Module: This intermediate solver evaluation should not have been executed. + + +LabVIEW Simulation Module: The dimensions of the arrays for the Lookup Table are inconsistent. + + +LabVIEW Simulation Module: The dimensions of the parameter vectors of this function do not match. + + +LabVIEW Simulation Module: The Execution Mode is not consistent with the specified discrete integration method. + + +LabVIEW Simulation Module: The order of the numerator must be greater than the order of the denominator. + + +LabVIEW Simulation Module: You must match complex entries in the Zero-Pole-Gain function with a complex conjugate. + + +LabVIEW Simulation Module: The order of the numerator and the order of the denominator are inconsistent. + + +LabVIEW Simulation Module: The size of the initial condition vector is incorrect for the MIMO system. + + +LabVIEW Simulation Module: The size of the input vector is incorrect for the MIMO system. + + +LabVIEW Simulation Module: The system model order has changed from the previous iteration of the Simulation Loop. + + +LabVIEW Simulation Module: Ill-conditioned MIMO system. + + +LabVIEW Simulation Module: The period is negative or zero. + + +LabVIEW Simulation Module: The duty cycle is out of range. + + +LabVIEW Simulation Module: Evaluating a single-step solver on a minor substep. + + +LabVIEW Simulation Module: The frequency is negative or zero. + + +LabVIEW Simulation Module: The target time is less than or equal to the simulation initial time. + + +LabVIEW Simulation Module: The upper limit is less than the lower limit. + + +LabVIEW Simulation Module: The switch on point is less than the switch off point. + + +LabVIEW Simulation Module: The quantization interval is less than or equal to zero. + + +LabVIEW Simulation Module: Failed to translate expression. + + +LabVIEW Simulation Module: Invalid SimX node reference. + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/LabVIEW-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/LabVIEW-errors.txt new file mode 100755 index 0000000..124588d --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/LabVIEW-errors.txt @@ -0,0 +1,3202 @@ + + + + + + + +LabVIEW: (Hex 0x80004001) Not implemented. + + +LabVIEW: (Hex 0x80004004) Operation aborted. + + +LabVIEW: (Hex 0x80004005) Unspecified error. + + +LabVIEW: (Hex 0x80070057) One or more arguments are invalid. + + +LabVIEW: (Hex 0x8ABC0008) Cannot resolve name to a network address. + + +LabVIEW: (Hex 0x8ABC0009) Network operation timed out. + + +LabVIEW: (Hex 0x8ABC0011) Could not resolve service to a port address. + + +LabVIEW: (Hex 0x8ABC0012) Timed out while trying to connect to peer. + + +LabVIEW: (Hex 0x8ABC0022) Computer name is not present in the URL. + + +LabVIEW: (Hex 0x8ABC0023) Computer name starts with a non-alphabetic character. + + +LabVIEW: (Hex 0x8ABC0024) Computer name contains an invalid character. + + +LabVIEW: (Hex 0x8ABC0025) Process name is not present in the URL. + + +LabVIEW: (Hex 0x8ABC0026) Process name contains an invalid character. + + +LabVIEW: (Hex 0x8ABC0027) Point or tag name is not present in the URL. + + +LabVIEW: (Hex 0x8ABC0028) Point or tag name contains an invalid character. + + +LabVIEW: (Hex 0x8ABC0030) Empty component in point or tag name. + + +LabVIEW: (Hex 0x8ABC0034) Thread initiation failed. + + +LabVIEW: (Hex 0x8ABC0100) URL does not start with two slashes. + + +LabVIEW: (Hex 0x8ABC0101) URL starts with more than two slashes. + + +LabVIEW: (Hex 0x8ABC0102) URL contains two consecutive delimiters. + + +LabVIEW: (Hex 0x8ABC0104) Unbalanced quotation marks in URL. + + +LabVIEW: (Hex 0x8ABCB200) Invalid refnum. + + +LabVIEW: (Hex 0x8ABCB201) Invalid property code. + + +LabVIEW: (Hex 0x8ABCB202) Invalid privilege ID. + + +LabVIEW: (Hex 0x8ABCB203) Invalid access type. + + +LabVIEW: (Hex 0x8ABCB204) Invalid argument. + + +LabVIEW: (Hex 0x8ABCB205) Entry not found. + + +LabVIEW: (Hex 0x8BBB0000) The value from this shared variable might not be the most current value from the data source. + + +LabVIEW: (Hex 0x8BBB0001) Sensor failure + + +LabVIEW: (Hex 0x8BBB0002) General device error response. + + +LabVIEW: (Hex 0x8BBB0003) Server failure. + + +LabVIEW: (Hex 0x8BBB0004) General communications failure. + + +LabVIEW: (Hex 0x8BBB0005) The shared variable does not exist. + + +LabVIEW: (Hex 0x8BBB0006) The shared variable has no value. + + +LabVIEW: (Hex 0x8BBB0007) The shared variable is inactive. + + +LabVIEW: (Hex 0x8BBB0008) Sensor inaccurate + + +LabVIEW: (Hex 0x8BBB0009) Engineering unit limits exceeded. + + +LabVIEW: (Hex 0x8BBB000A) Unspecified error + + +LabVIEW: (Hex 0x8BBB000B) Math error + + +LabVIEW: (Hex 0x8BBB000C) Communications link failure + + +LabVIEW: (Hex 0x8BBB000D) NI-PSP has not connected to the server yet + + +LabVIEW: (Hex 0x8BBB000E) DNS lookup failed for the server. + + +LabVIEW: (Hex 0x8BBB000F) The server is not reachable. + + +LabVIEW: (Hex 0x8BBB0010) Service lookup failed for the server. + + +LabVIEW: (Hex 0x8BBB0011) The connection to the server was disconnected. + + +LabVIEW: (Hex 0x8BBB0012) The process was not found or is not responding. + + +LabVIEW: (Hex 0x8BBB0013) Failed to resolve URL for this shared variable. + + +LabVIEW: (Hex 0x8BBB0014) Read access is denied to the shared variable. + + +LabVIEW: (Hex 0x8BBB0015) Subscribe failed. + + +LabVIEW: (Hex 0x8BBB0016) Invalid URL for this shared variable. + + +LabVIEW: (Hex 0x8BBB0017) Invalid combination of feature packs + + +LabVIEW: (Hex 0x8BBB0018) Invalid float value. + + +LabVIEW: (Hex 0x8BBB0019) Invalid Boolean value. + + +LabVIEW: (Hex 0x8BBB001A) Value attribute not found. + + +LabVIEW: (Hex 0x8BBB001B) Invalid access type. + + +LabVIEW: (Hex 0x8BBB001C) Missing access type. + + +LabVIEW: (Hex 0x8BBB001D) Invalid URL syntax. + + +LabVIEW: (Hex 0x8BBB001E) Shared variable is bound but the path or URL is not specified. + + +LabVIEW: (Hex 0x8BBB001F) A path and URL are both specified. + + +LabVIEW: (Hex 0x8BBB0020) Invalid value for the Bind to Source option. + + +LabVIEW: (Hex 0x8BBB0021) A value is missing for the Bind to Source option. + + +LabVIEW: (Hex 0x8BBB0022) Invalid value for Single Writer option. + + +LabVIEW: (Hex 0x8BBB0023) You must select a name for the shared variable. + + +LabVIEW: (Hex 0x8BBB0024) Two var type feature packs are selected + + +LabVIEW: (Hex 0x8BBB0025) No var type feature pack is selected + + +LabVIEW: (Hex 0x8BBB0026) Var type feature packs must be required + + +LabVIEW: Buffer size must be greater than 1. + + +LabVIEW: Array length must be greater than or equal to 2. + + +LabVIEW: Data points in waveform must be greater than or equal to 1. + + +LabVIEW: Global variables can only be accessed from the local machine. + + +LabVIEW: You cannot use a Variable Node of this type on this target. + + +LabVIEW: The variable configuration is invalid. Edit the variable properties to correct the configuration. + + +LabVIEW: Variable has undefined data type. + + +LabVIEW: Variable has invalid data type. + + +LabVIEW: (Hex 0x8BBB002F) The Raw Full Scale value must be greater than the Raw Zero Scale value. + + +LabVIEW: (Hex 0x8BBB0030) The Raw Scale and/or Engineering Scale is invalid. + + +LabVIEW: (Hex 0x8BBB0031) The Engineering Full Scale value should not be equal to Engineering Zero Scale value. + + +LabVIEW: (Hex 0x8BBB0032) Scaling type attribute not specified. + + +LabVIEW: (Hex 0x8BBB0033) Scaling ranges not fully specified. + + +LabVIEW: BuffSize, ElemSize, and PointsPerWaveform must be greater than or equal to 1. + + +LabVIEW: This piece of configuration does not exist for this type of variable. + + +LabVIEW: (Hex 0xBFFC0001) Parameter 1 is out of range. + + +LabVIEW: (Hex 0xBFFC0002) Parameter 2 is out of range. + + +LabVIEW: (Hex 0xBFFC0003) Parameter 3 is out of range. + + +LabVIEW: (Hex 0xBFFC0004) Parameter 4 is out of range. + + +LabVIEW: (Hex 0xBFFC0005) Parameter 5 is out of range. + + +LabVIEW: (Hex 0xBFFC0006) Parameter 6 is out of range. + + +LabVIEW: (Hex 0xBFFC0007) Parameter 7 is out of range. + + +LabVIEW: (Hex 0xBFFC0008) Parameter 8 is out of range. + + +LabVIEW: (Hex 0xBFFC0010) Error interpreting instrument response + + +LabVIEW: (Hex 0xBFFC0011) Identification query failed. + + +LabVIEW: (Hex 0xBFFC0012) Error interpreting the instrument's response. + + +LabVIEW: Instrument self-test failure. + + +LabVIEW: Instrument error query failure. + + +LabVIEW: just an example + + +LabVIEW: An unidentified error occurred in the parser. + + +LabVIEW: The parser aborted recognition of a token. + + +LabVIEW: A recognition error occurred while generating a stream of tokens. + + +LabVIEW: An I/O error occurred while generating a stream of tokens. + + +LabVIEW: An unidentified error occurred while generating a stream of tokens. + + +LabVIEW: A semantic error occurred while parsing. + + +LabVIEW: LabVIEW found an unexpected character while parsing. + + +LabVIEW: LabVIEW found an unexpected token while parsing. + + +LabVIEW: LabVIEW found a mismatched token while parsing. + + +LabVIEW: LabVIEW found a mismatched character while parsing. + + +LabVIEW: An unidentified error occurred while attempting to recognize a character or token. + + +LabVIEW: An I/O error occurred while generating a stream of characters. + + +LabVIEW: An unidentified error occurred while generating a stream of characters. + + +LabVIEW: A parser error occurred. + + +LabVIEW: You do not have the appropriate license to access this item. Contact National Instruments for more information. + + +LabVIEW: The output is complex. + + +LabVIEW: MathScript strings only supports ASCII characters in the range of 32-126. + + +LabVIEW: Only scalar elements and strings are supported in a switch statement. + + +LabVIEW: The given function name does not correspond to a known function. + + +LabVIEW: The current MathScript could not be executed. Please contact National Instruments with the script. + + +LabVIEW: LabVIEW evaluated the integrand more than 20,000 times. + + +LabVIEW: The integration interval is approaching machine epsilon. + + +LabVIEW: Two consecutive iterations of this function produce the same result. + + +LabVIEW: This function exceeded the maximum number of iterations without converging. + + +LabVIEW: A divide-by-zero error occurred. + + +LabVIEW: You specified an invalid time. + + +LabVIEW: You specified an invalid format specifier. + + +LabVIEW: The sizes of the input matrices are incompatible. + + +LabVIEW: Some eigenvalues of the input matrix are ill-conditioned. + + +LabVIEW: The precondition matrices are ill-conditioned. + + +LabVIEW: The upper triangular part of the input matrix is not a valid Cholesky factor. + + +LabVIEW: The downdated matrix is not positive definite. + + +LabVIEW: The input matrix is not positive definite. + + +LabVIEW: You specified an empty matrix. + + +LabVIEW: The degree of the polynomial is greater than the number of data points. + + +LabVIEW: The lengths of the two input vectors are not compatible. + + +LabVIEW: The length of the input vector must be greater than 2. + + +LabVIEW: The length of the input vector must be greater than 2*l. + + +LabVIEW: The elements of the input vector must be in increasing order. + + +LabVIEW: The elements of the input vector must be distinct. + + +LabVIEW: The values of the input vectors are not compatible. + + +LabVIEW: All elements of the input vector must be positive. + + +LabVIEW: All real elements of the input vector must be greater than or equal to 0. + + +LabVIEW: All input elements must be in the interval [-1, 1]. + + +LabVIEW: You specified an empty vector. + + +LabVIEW: This function is not defined for vector data types. + + +LabVIEW: The input parameter must be a vector. + + +LabVIEW: The input scalar must be greater than 0 and not equal to 2. + + +LabVIEW: The input scalar must be in the interval [0, 1]. + + +LabVIEW: The input scalar cannot be 0. + + +LabVIEW: The input scalar must be positive. + + +LabVIEW: The input scalar must be greater than or equal to 0. + + +LabVIEW: You specified input parameters for a function that takes no inputs. + + +LabVIEW: You specified an invalid number of output parameters for this function. + + +LabVIEW: You specified an invalid number of input parameters for this function. + + +LabVIEW: You cannot specify a step size of zero for a range. + + +LabVIEW: The input parameters must be real, positive numbers. + + +LabVIEW: You must call the tic function before calling the toc function. + + +LabVIEW: You must use a square matrix. + + +LabVIEW: The input parameters are not in the required format. + + +LabVIEW: The base of the number conversion must be an integer between 2 and 36. + + +LabVIEW: You must operate on the first or second dimension. + + +LabVIEW: The matrix sizes are not valid. + + +LabVIEW: The data types you specified are incompatible. This error can occur when you build a matrix with both complex and character elements. + + +LabVIEW: All rows of a matrix must have the same number of columns. + + +LabVIEW: You cannot convert a complex number to a character. This error can occur when you replace a character matrix element with a complex element or when you explicitly convert a complex number to a character. + + +LabVIEW: You cannot convert a Boolean to a character. This error can occur when you replace a character matrix element with a Boolean or when you explicitly convert a Boolean to a character. + + +LabVIEW: You cannot convert a uint64 number to a Boolean. This error can occur when you replace a Boolean matrix element with a uint64 element or when you explicitly convert a uint64 number to a Boolean. + + +LabVIEW: You cannot convert an int64 number to a Boolean. This error can occur when you replace a Boolean matrix element with an int64 element or when you explicitly convert an int64 number to a Boolean. + + +LabVIEW: You cannot convert a character to a Boolean. This error can occur when you replace a Boolean matrix element with a character or when you explicitly convert a character to a Boolean. + + +LabVIEW: You cannot convert a complex number to a Boolean. This error can occur when you replace a Boolean matrix element with a complex element or when you explicitly convert a complex number to a Boolean. + + +LabVIEW: The number of rows and columns that the indexes specify must equal the number of rows and columns of values you want to set. + + +LabVIEW: You cannot use an empty matrix to delete a single element in a 2D matrix. + + +LabVIEW: The indexes are out of bounds for the variable you specified. + + +LabVIEW: The given name does not correspond to a known function, variable, or symbol. + + +LabVIEW: You cannot resize a 2D matrix by indexing the matrix with a linear index that is out of the bounds of the matrix. + + +LabVIEW: You cannot replace elements of a matrix with non-matrix data types. + + +LabVIEW: The number of indexes must match the number of values you want to assign to a matrix. + + +LabVIEW: The variable is not a matrix data type. This error can occur when you attempt to index a non-matrix data type. + + +LabVIEW: The indexes for a matrix indexing operation must be real, positive integers. + + +LabVIEW: An internal error occurred while processing this MathScript. Contact National Instruments with the MathScript you used. + + +LabVIEW: LabVIEW does not understand the optional parameter you passed to this function. Verify that you spelled the parameter correctly and that the option is valid for this function. + + +LabVIEW: The data type of the input parameters is not valid for this operation. + + +LabVIEW: LabVIEW does not understand the parameters you passed to this function. + + +LabVIEW: This function does not operate on matrices of 3 or more dimensions. + + +LabVIEW: This function does not operate on function handles. + + +LabVIEW: This operation requires at least one parameter to be a scalar. + + +LabVIEW: The input parameters for this function must be real. + + +LabVIEW: The bit you want to set is outside the range of the current floating-point representation. + + +LabVIEW: The bit you want to get is outside the range of the current floating-point representation. + + +LabVIEW: If you perform a bitwise complement and treat the result as an N-bit number, the original number cannot be greater than 2^N. + + +LabVIEW: The input parameters must be nonnegative integers less than bitmax. + + +LabVIEW: Elements of the input matrices must be nonnegative integers of the same data type. + + +LabVIEW: The data types of the input matrices must be the same when you perform a bitwise operation. + + +LabVIEW: The sizes of the input matrices are incompatible. Verify that the matrices have the same size or that one is a scalar. + + +LabVIEW: The inputs to this function must be scalar. + + +LabVIEW: The operator you want to use is not defined. If the operator is correct, contact National Instruments. + + +LabVIEW: This function is not defined to operate on complex data. This error can occur when you perform a logical operation with invalid data types. + + +LabVIEW: This function is not defined to operate on Boolean, character, or single-precision data. This error can occur when you perform a bitwise operation with invalid data types. + + +LabVIEW: This function is defined to operate only on characters. + + +LabVIEW: This function is not defined for sized integer matrix data types (e.g. int8, uint32, etc.). + + +LabVIEW: This function is not defined for non-matrix data types. + + +LabVIEW: This function is not defined for the number of parameters you supplied. + + +LabVIEW: The supplied parameter is incompatible with the data type that this function requires. For example, you cannot add two int8 numbers. + + +LabVIEW: A problem occurred in a subVI call. + + +LabVIEW: Configured network speed does not match the actual one. This can happen if network adapter is slower than the specified network speed or the network speed has been downgraded by another adapter, hub, or switch. + + +LabVIEW: "Data Received" timing source can not be used by the node owning the associated variable or "Data Sent" timing source can only be used on the node owning the associated variable + + +LabVIEW: Requested error can not be ignored because a full or partial shutdown of the node and/or network has been initiated. + + +LabVIEW: A valid packet that does not follow to NI's deterministic protocol has been detected on the network. The node/network will be shut down. + + +LabVIEW: An already deployed configuration for one or more network nodes does not match this node's configuration. + + +LabVIEW: Network transmission violated requested timing. See documentation for more information about what might have caused the error and how can it be avoided + + +LabVIEW: Resource allocation/creation/configuration failed because the existing resource has already been configured with different parameters. This error is generated if a particular resource such as a channel is being recreated with, for example, a different buffer size. + + +LabVIEW: Read failed after three retries due to new data being placed into the buffer + + +LabVIEW: Clock synchronization algorithm failed because enough cycle start packets have been missed - no more write network transactions will be allowed until the deterministic communication engine is restarted. + + + +LabVIEW: Invalid reference + + +LabVIEW: Deterministic communciation engine found no devices with specified MAC address + + +LabVIEW: Requested device can not be instantiated in a specified mode because of one of the following reasons: there is already device initialized in determinsistic mode + + +LabVIEW: Specified subchannel is out of range. Please see documentation about supported range for channel sub-channels. + + +LabVIEW: One of the following illegal operations has been attempted: allocation of a write terminal on a channel owned by another node; allocation of a shared memory variable on a non shared memory channel; creation of a read or write terminal on a shared memory channel + + +LabVIEW: An item with specified index has already been configured + + +LabVIEW: Item offset is out of range specified during channel initialization time + + +LabVIEW: Message being written to the deterministic communication engine exceeds maximum size configured during channel or terminal creation time or the buffer allocated for reading is smaller than the message size + + +LabVIEW: Deterministic communication engine timing source with the same name already exists + + +LabVIEW: Deterministic communication engine files have not been properly installed + + +LabVIEW: Deterministic communication engine run out of allocated resources + + +LabVIEW: The deterministic communication engine failed to initialize hardware. + + +LabVIEW: Deterministic communciation engine failed to allocate enough memory while performing requested operation + + +LabVIEW: There must be a signal wired to each input signal terminal. + + +LabVIEW: (Hex 0xFFFFED28) Clipped Floating-point data to fit the range [-1.0, 1.0]. + + +LabVIEW: (Hex 0xFFFFED2C) Potential glitch during write. + + +LabVIEW: An invalid UTF-8 string was used in a regular expression or input string. + + +LabVIEW: Two named groups have the same name. + + +LabVIEW: There is a syntax error after (?P. + + +LabVIEW: An unrecognized character was encounted after (?P. + + +LabVIEW: A recursive call could loop indefinitely. + + +LabVIEW: Closing ) for (?C expected. + + +LabVIEW: Number after (?C is > 255. + + +LabVIEW: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X escape sequences. + + +LabVIEW: The \C expression is not allowed in a lookbehind assertion. + + +LabVIEW: Invalid condition (?(0). + + +LabVIEW: The character value in the \x{...} sequence is too large. + + +LabVIEW: UTF-8 is not supported. + + +LabVIEW: POSIX collating elements are not supported. + + +LabVIEW: Unknown POSIX class name. + + +LabVIEW: A (?R or (?digits expression must be followed by ). + + +LabVIEW: An assertion is expected after (?(. + + +LabVIEW: A conditional group contains more than two branches. + + +LabVIEW: There is a malformed number after (?(. + + +LabVIEW: A lookbehind assertion is not a fixed length. + + +LabVIEW: There is an unrecognized character after (?<. + + +LabVIEW: Internal error: code overflow. + + +LabVIEW: There is an unmatched parenthesis in a regular expression. + + +LabVIEW: Failed to get the memory for regular expression matching. + + +LabVIEW: The regular expression is too large. + + +LabVIEW: Parentheses are nested too deeply. + + +LabVIEW: A ) is missing after a comment. + + +LabVIEW: Internal Error: Unknown option bit(s) set. + + +LabVIEW: Internal Error: Erroffset passed as NULL. + + +LabVIEW: There is a reference to non-existent subpattern. + + +LabVIEW: A ) is missing. + + +LabVIEW: POSIX named classes are supported only within a class. + + +LabVIEW: There is an unrecognized character after (?. + + +LabVIEW: Internal error: unexpected repeat. + + +LabVIEW: There is nothing to repeat. + + +LabVIEW: A range is out of order in a character class. + + +LabVIEW: A character class contains an invalid escape sequence. + + +LabVIEW: A character class is missing a ']' terminator. + + +LabVIEW: A number in the {} quantifier is too large. + + +LabVIEW: Numbers out of order in {} quantifier. + + +LabVIEW: An unrecognized character follows a '\'. + + +LabVIEW: A regular expression must not end with '\c'. + + +LabVIEW: A regular expression must not end with '\'. + + +LabVIEW: An unknown error occurred during the regular expression match. + + +LabVIEW: LabVIEW could not access the source control provider. The LabVIEW source control configuration settings are not valid for this session or a timeout occurred. Select Tools>>Source Control>>Configure Source Control to reconfigure source control. + + +LabVIEW: The specified file is not a valid LabVIEW file type. Enter a path to an existing LabVIEW file, such as a VI or control. + + +LabVIEW: An error occurred while comparing the specified file. The local file is not the latest version in source control. + + +LabVIEW: The value of an input parameter is out of range. + + +LabVIEW: The source control configuration data is invalid, corrupted, or missing. Verify that the data is valid for the source control provider you selected during configuration. + + +LabVIEW: The number of files input does not match the version information input. Make sure the two inputs contain the same number of elements. + + +LabVIEW: The input file type is not compatible with the file retrieval method. + + +LabVIEW: Invalid source control reference. + + +LabVIEW: No valid file paths were specified. You must enter at least one valid file path. + + +LabVIEW: An error occurred while uninitializing the source control provider. + + +LabVIEW: An error occurred while loading the source control DLL. The source control provider might have been moved or removed without a registry update. You might need to reinstall the source control provider. + + +LabVIEW: An internal error occurred during the source control operation. + + +LabVIEW: An error occurred while accessing the source control provider. The specified provider was not found. + + +LabVIEW: You cannot perform source control operations until you configure source control in LabVIEW. Select Tools>>Source Control>>Configure Source Control to configure source control. + + +LabVIEW: You cannot perform the specified source control operation on files marked as Open for Add or Open for Delete. Submit these files to the source control provider before you attempt the operation. + + +LabVIEW: The changelist does not include a valid description. Verify that the description is not empty and does not contain the default text. + + +LabVIEW: Unable to locate or run the administration tool from the source control provider. + + +LabVIEW: All files in a single submit operation must be the latest version, checked out to the user, not locked by another user, and under source control. + + +LabVIEW: The specified files are not in the same changelist. All files in a single submit operation must be in the same changelist. + + +LabVIEW: An error occurred during the specified source control operation. + + +LabVIEW: A connection with the source control provider already exists. Disconnect from the current source control provider before you open a new connection. + + +LabVIEW: The specified source control provider is not compatible with LabVIEW. The source control provider does not support required LabVIEW functionality. + + +LabVIEW: The length of an input parameter exceeds the maximum allowed value. + + +LabVIEW: The specified source control operation cannot run because the source control provider is not initialized. + + +LabVIEW: The specified option is invalid. + + +LabVIEW: A failure occurred in the connection with the source control provider. + + +LabVIEW: Unable to locate the local copy of the specified file. + + +LabVIEW: An error occurred while opening a source control project or accessing a file. An input value uses invalid file syntax. + + +LabVIEW: The user is not allowed to perform this operation. + + +LabVIEW: An error occurred while performing the specified operation. No source control project is open. + + +LabVIEW: An error occurred while opening a source control project or accessing a file. The specified path is invalid. + + +LabVIEW: An error occurred while opening the specified source control project. An input value uses invalid syntax for the source control project syntax. + + +LabVIEW: The specified source control project is already open. + + +LabVIEW: An error occurred while logging into the source code provider. The specified user login is invalid. Verify the login information you entered. + + +LabVIEW: An error occurred within the source control provider program, such as shell failure. + + +LabVIEW: An error occurred during file check-in. The specified file was automatically merged but was not checked in because you must resolve a merge conflict manually. + + +LabVIEW: An error occurred during file check-in. The specified file was automatically merged but was not checked in, pending user verification. + + +LabVIEW: An error occurred while adding a file to source control. The source control provider does not support the file type (binary or text). + + +LabVIEW: The source control provider did not perform the specified operation. + + +LabVIEW: The source control provider returned a non-specific error. The specified operation was not performed. + + +LabVIEW: The source control provider does not support the specified operation. + + +LabVIEW: The version of the file you specified does not exist or was not specified correctly. Specify a valid version or date and time. + + +LabVIEW: An error occurred while retrieving or removing the specified file. The file is currently checked out, so the provider is unable to retrieve or remove it. + + +LabVIEW: The specified file is not under source control. + + +LabVIEW: An error occurred while adding a file to source control. The specified file is in source control already. + + +LabVIEW: File check-in did not occur because of a conflict error. Another user has checked in the file. + + +LabVIEW: An error occurred while accessing source control. Check for network or contention problems. + + +LabVIEW: An error occurred while checking out a file. The specified file is exclusively checked out by another user. + + +LabVIEW: An error occurred while checking out a file. The specified file is locked. + + +LabVIEW: An error occurred while checking out a file. The specified file already is checked out. + + +LabVIEW: An error occurred while checking in or undoing the check out of a file. The specified file is not checked out to the current user. + + +LabVIEW: An error occurred while opening the specified source control project. The source control provider could not create the source control project. + + +LabVIEW: An error occurred while opening the specified source control project. The source control provider does not recognize the project name. Verify that the project name and location are correct. + + +LabVIEW: An error occurred during source control provider initialization. + + +LabVIEW: DIAdem could not be started. You must have DIAdem 9.1 Service Pack 2 or later installed to use the NI DIAdem Report Express VI. + + +LabVIEW: Cannot append data to the existing file because the value of the X Value Columns option of the Write to Measurement File Express VI changed. + + +LabVIEW: The Write to Measurement File Express VI cannot append new data to the file because the time information of the signals stored in the file does not match the signals you are trying to append. + + +LabVIEW: The Write to Measurement File Express VI cannot append new data to the file because the signals stored in the file don't match the signals you are trying to append. + + +LabVIEW: The Write to Measurement File Express VI cannot append new data to frequency domain waveforms. + + +LabVIEW: After deleting data from a file, you must close the file and reopen it before you can perform a read operation. + + +LabVIEW: Storage VIs version conflict. + + +LabVIEW: The string you wired to this VI contains binary characters that are not valid entries for string values in a .tdm file. To store binary data, use data channels with a data type of 8-bit unsigned integer. + + +LabVIEW: This property is not part of the Storage VI data structure. + + +LabVIEW: This object type is not part of the Storage VI data structure. + + +LabVIEW: LabVIEW could not write the file back to disk. + + +LabVIEW: LabVIEW cannot convert the object ID into a valid refnum. An object with this ID does not exist in the data storage file. + + +LabVIEW: LabVIEW failed to allocate memory from the operating system of your computer. + + +LabVIEW: An input parameter to this VI is invalid. + + +LabVIEW: LabVIEW could not load the data channel you specified from the data storage file. The channel either is empty or the properties that describe the channel, such as length or data type, are incomplete. + + +LabVIEW: The software installed on this computer does not support the file format you requested. The Storage VIs access files through plug-in libraries LabVIEW and DIAdem install. Visit ni.com to download the library you need. + + +LabVIEW: This property does not exist. + + +LabVIEW: The data type of a property or channel could not automatically be coerced when writing to or reading from a data storage file. + + +LabVIEW: Data storage is write-protected. + + +LabVIEW: LabVIEW cannot load the USI components the Storage VIs require. These components are installed by LabVIEW and DIAdem. Visit ni.com to download the components you need. You may need to reinstall LabVIEW or DIAdem. + + +LabVIEW: The data storage file is already open. + + +LabVIEW: LabVIEW cannot open the data storage file. + + +LabVIEW: There is an error in the query expression. + + +LabVIEW: LabVIEW cannot find the object type. + + +LabVIEW: LabVIEW cannot write to a read-only data storage file. + + +LabVIEW: LabVIEW does not support the data type of this property. + + +LabVIEW: The object refnum is invalid. The node that returned this refnum might have encountered an error and did not return a valid refnum. The storage this refnum refers to might have closed before the call executed. + + +LabVIEW: The property data type does not match. + + +LabVIEW: This property does not exist. + + +LabVIEW: Storage VIs internal error. + + +LabVIEW: A DLL required by this variable is missing or is the wrong version. + + +LabVIEW: A value has never been written to this variable. + + +LabVIEW: The variable write buffer was full. + + +LabVIEW: The variable read buffer was empty. + + +LabVIEW: This version of LabVIEW does not support waveforms in an RT FIFO. + + +LabVIEW: Invalid waveform passed to the RT FIFO. + + +LabVIEW: RT FIFO does not exist. + + +LabVIEW: RT FIFO must contain at least 2 elements. + + +LabVIEW: (Hex 0xFFFFF764) Type mismatch. Named RT FIFO type does not match that of existing RT FIFO with same name. + + +LabVIEW: (Hex 0xFFFFF765) Cannot match an empty name. + + +LabVIEW: (Hex 0xFFFFF766) The specified name does not exist. + + +LabVIEW: (Hex 0xFFFFF767) The specified name already exists and is of a different size or type. + + +LabVIEW: (Hex 0xFFFFF768) Unknown internal error. + + +LabVIEW: Waveform data type file datalog type conflict. Refer to the National Instruments Web site at ni.com/info and enter the info code exd9zq for more information about migrating waveform data from LabVIEW 6.x to LabVIEW 7.x. + + +LabVIEW: The t0 does not align with the end of the previous signal. + + +LabVIEW: Specified start position or signal index is out of range. + + +LabVIEW: Full Scale Range cannot be less than or equal to zero. + + +LabVIEW: An invalid character was present in the spreadsheet string. Use only 0, 1, L, H, X, Z, V, or T. + + +LabVIEW: Too many signals to convert into the specified data type. + + +LabVIEW: Specified start position or duration is out of range. + + +LabVIEW: Both waveforms must contain the same number of signals. + + +LabVIEW: The number of samples to compare exceeds the number of samples after the start sample. + + +LabVIEW: Highest resolution supported for conversion is 52. + + +LabVIEW: Values other than 0, 1, L, H are present in the digital data. + + +LabVIEW: Appending data with mismatched numbers of digital samples or signals. + + +LabVIEW: Signal value input is outside the range of the digital data. + + +LabVIEW: Start index out of range + + +LabVIEW: Start index, value, or tolerance is NaN + + +LabVIEW: (Hex 0xFFFFF8F5) Waveform x-axis value requested is out of range. + + +LabVIEW: (Hex 0xFFFFF8F6) Waveforms have different dt values. + + +LabVIEW: (Hex 0xFFFFF8F7) Duration input is not an integer multiple of dt. Value was coerced to nearest integer multiple of dt. + + +LabVIEW: (Hex 0xFFFFF8F8) Start time input is not an integer multiple of dt. Value was coerced to nearest integer multiple of dt. + + +LabVIEW: Index is out of range in a put operation. + + +LabVIEW: The contents of the reply you are accessing have not arrived yet. + + +LabVIEW: No handler in the dispatch tables fits the parameters to AEGetEventHandler or AEGetCoercionHandler. + + +LabVIEW: Unknown Apple Event address type. + + +LabVIEW: Handler did not get all required parameters. + + +LabVIEW: Wrong keyword for a special function. + + +LabVIEW: No user interaction allowed. + + +LabVIEW: Apple Event timed out. + + +LabVIEW: User canceled out of wait loop for reply or receipt. + + +LabVIEW: Invalid sending mode was passed. + + +LabVIEW: AEResetTimer was passed an invalid reply parameter. + + +LabVIEW: AEResetTimer was passed an invalid reply parameter. + + +LabVIEW: The event is not an Apple Event. + + +LabVIEW: Need a newer version of Apple Event Manager. + + +LabVIEW: Operation involving a list item failed. + + +LabVIEW: Not a valid descriptor record. + + +LabVIEW: Wrong descriptor type. + + +LabVIEW: Data in an Apple Event could not be read. + + +LabVIEW: Descriptor record was not found. + + +LabVIEW: Data could not be coerced to the requested descriptor type. + + +LabVIEW: Instrument-specific error. + + +LabVIEW: Error interpreting instrument response. + + +LabVIEW: Instrument identification query failed. + + +LabVIEW: Parameter out of range. + + +LabVIEW: Destination port requires authentication. + + +LabVIEW: Location name is invalid. + + +LabVIEW: Service method is other than ppcServiceRealTime. + + +LabVIEW: Invalid user reference number. + + +LabVIEW: User's password is wrong. + + +LabVIEW: PPCStart failed because destination did not have an inform pending. + + +LabVIEW: An error has occurred in the network. + + +LabVIEW: Unable to create a new userRefNum. + + +LabVIEW: The default userRefNum does not yet exist. + + +LabVIEW: User has not specified owner name in Sharing Setup Control Panel. + + +LabVIEW: PPCPortRec is invalid. + + +LabVIEW: The session has closed. + + +LabVIEW: The port was closed. + + +LabVIEW: Unable to contact destination application. + + +LabVIEW: A system resource is missing. + + +LabVIEW: User has not named his Macintosh in the Network Setup Control Panel. + + +LabVIEW: Destination rejected the session request. + + +LabVIEW: User name unknown on destination machine. + + +LabVIEW: Another port is already open with this name (perhaps in another application). + + +LabVIEW: Bad parameter or invalid state for this operation. + + +LabVIEW: Invalid session reference number. + + +LabVIEW: PPC Toolbox is unable to create a session. + + +LabVIEW: Port does not exist at destination. + + +LabVIEW: Network activity is currently disabled. + + +LabVIEW: The system is unable to allocate memory. This is a critical error, and you should restart. + + +LabVIEW: Invalid port name. Unable to open port or bad portRefNum. + + +LabVIEW: Invalid or inappropriate locationKindSelector in locationName. + + +LabVIEW: PPC Toolbox has not been initialized. + + +LabVIEW: Cannot load scheduler library on the target. + + +LabVIEW: The timed structure feature or type is not supported on the current platform for the following timing source. + + +LabVIEW: The following timed structures timed out while waiting for the synchronization group to synchronize all timed structures in the group. + + +LabVIEW: The following timed structure has been initialized with illegal parameters. + + +LabVIEW: An illegal mode has been specified for the following given Timed Loop. + + +LabVIEW: An illegal period, deadline, offset, or start has been specified for the following timed structure. + + +LabVIEW: Timing Source error or attempted to execute another iteration of a Timed Loop that was already aborted due to an error of the following timing source. + + +LabVIEW: Timed structure aborted or attempted to execute another iteration of the following aborted Timed Loop. + + +LabVIEW: Cannot add timing source to the following active timing source hierarchy. + + +LabVIEW: Cannot add timed structure to the active timed structure synchronization group. + + +LabVIEW: The following timing source can be assigned to only one timing source hierarchy at a time. + + +LabVIEW: The following timed structure can only be assigned to one timed structure synchronization group at a time. + + +LabVIEW: The given name is already being used by another timing source hierarchy: + + +LabVIEW: The given name is already being used by another timed structure synchronization group: + + +LabVIEW: The given name is already being used by the following timing source. + + +LabVIEW: The given name is already being used by the following timed structure. + + +LabVIEW: LabVIEW: The following timing source hierarchy does not exist possibly because the timing source hierarchy has never been created, has been cleared, or an illegal action was attempted. + + +LabVIEW: LabVIEW: The following synchronization group does not exist possibly because the synchronization group has never been created, has been cleared, or an illegal action was attempted. + + +LabVIEW: LabVIEW: The following timing source does not exist possibly because the timing source was never created, has been cleared, or an illegal action was attempted. + + +LabVIEW: The timed structure does not exist, possibly because the timed structure has not been created, the timed structure has been cleared, or an illegal operation was attempted. + + +LabVIEW: Creating a new timing source hierarchy exceeds the maximum allowed number of simultaneously active timing source hierarchies. + + +LabVIEW: Creating another timed structure synchronization group exceeds the maximum allowed number of simultaneously active synchronization groups. + + +LabVIEW: Creating another timing source exceeds the maximum allowed number of simultaneously active timing sources. + + +LabVIEW: Creating another timed structure exceeds the maximum allowed number of simultaneously active timed structures. + + +LabVIEW: The TEDS bitstream is invalid or corrupt. + + +LabVIEW: The specified index is outside the bounds of the TEDS data array. + + +LabVIEW: The specified value is outside of the acceptable range for this property. + + +LabVIEW: The Basic TEDS was not found in the TEDS data. + + +LabVIEW: The specified selectcase or structarray was not found. + + +LabVIEW: The specified VTEDS file was written with an incompatible version of the TEDS library. + + +LabVIEW: The EEPROM is too small for data. + + +LabVIEW: EEPROM Write Failure + + +LabVIEW: Bad EEPROM ID + + +LabVIEW: No EEPROM is detected. + + +LabVIEW: This property cannot be edited because it is a constant in the template for this sensor. + + +LabVIEW: The enumeration for this property does not correspond to the data type specified by the template. + + +LabVIEW: This TEDS sensor requires a manufacturer defined template. + + +LabVIEW: The specified property is a floating-point data type according to the template. Casting this property to an unsigned integer will result in a loss of precision. + + +LabVIEW: The specified property is specified by the TEDS template as a string data type and cannot be converted to a numeric. + + +LabVIEW: The TEDS user data does not contain 7-bit ASCII code. + + +LabVIEW: The requested property cannot be found in the current TEDS data. + + +LabVIEW: The template to decode the remainder of the TEDS bitstream cannot be found in the specified template directory. + + +LabVIEW: The header selector in the legacy Basic TEDS is outside the acceptable range. + + +LabVIEW: The TEDS data checksum is invalid. + + +LabVIEW: This VI does not support the data type for this property. + + +LabVIEW: The number of bits required for the requested action is not divisible by five. + + +LabVIEW: The number of bits required is not divisible by seven. + + +LabVIEW: Networked machine was not found. + + +LabVIEW: Remote registry services not available or remote administration not enabled. + + +LabVIEW: Cannot create a stable subkey under a volatile parent key. + + +LabVIEW: Cannot create a symbolic link in a registry key that already has subkeys or values. + + +LabVIEW: System could not allocate the required space in a registry log. + + +LabVIEW: Illegal operation attempted on a registry key that has been marked for deletion. + + +LabVIEW: The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format. + + +LabVIEW: An I/O operation initiated by the registry failed irrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry. + + +LabVIEW: The registry is corrupted. The structure of one of the files that contains registry data is corrupted, the system's image of the file in memory is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted. + + +LabVIEW: One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful. + + +LabVIEW: The configuration registry key could not be written. + + +LabVIEW: The configuration registry key could not be read. + + +LabVIEW: The configuration registry key could not be opened. + + +LabVIEW: The configuration registry key is invalid. + + +LabVIEW: The configuration registry database is corrupt. + + +LabVIEW: Attempted to read beyond last key or value. + + +LabVIEW: Remote registry access denied. + + +LabVIEW: Specified key or value does not exist. + + +LabVIEW: Invalid registry refnum. + + +LabVIEW: Incorrect data type specified. + + +LabVIEW: Undetermined Windows registry error. + + +LabVIEW: An input parameter is invalid. + + +LabVIEW: Memory is full. + + +LabVIEW: Internal error. Wrong memory zone accessed. + + +LabVIEW: End of file encountered. + + +LabVIEW: File already open. + + +LabVIEW: Generic file I/O error. + + +LabVIEW: File not found. The file might have been moved or deleted, or the file path might be incorrectly formatted for the operating system. For example, use \ as path separators on Windows, : on Mac OS, and / on Linux. + + +LabVIEW: File permission error. + + +LabVIEW: Disk full. + + +LabVIEW: Duplicate path. + + +LabVIEW: Too many files open. + + +LabVIEW: Some system capacity necessary for operation is not enabled. + + +LabVIEW: Resource file not found. + + +LabVIEW: Cannot add resource. + + +LabVIEW: Resource not found. + + +LabVIEW: Image not found. + + +LabVIEW: Not enough memory to manipulate image. + + +LabVIEW: Pen does not exist. + + +LabVIEW: Configuration type invalid. + + +LabVIEW: Configuration token not found. + + +LabVIEW: Error occurred parsing configuration string. + + +LabVIEW: Configuration memory error. + + +LabVIEW: Bad external code format. + + +LabVIEW: External subroutine not supported. + + +LabVIEW: External code not present. + + +LabVIEW: Null window. + + +LabVIEW: Destroy window error. + + +LabVIEW: Null menu. + + +LabVIEW: Print aborted. + + +LabVIEW: Bad print record. + + +LabVIEW: Print driver error. + + +LabVIEW: Operating system error during print. + + +LabVIEW: Memory error during print. + + +LabVIEW: Print dialog error. + + +LabVIEW: Generic print error. + + +LabVIEW: Invalid device refnum. + + +LabVIEW: Device not found. + + +LabVIEW: Device parameter error. + + +LabVIEW: Device unit error. + + +LabVIEW: Cannot open device. + + +LabVIEW: Device call aborted. + + +LabVIEW: Generic error. + + +LabVIEW: Operation canceled by user. + + +LabVIEW: Object ID too low. + + +LabVIEW: Object ID too high. + + +LabVIEW: Object not in heap. + + +LabVIEW: Unknown heap. + + +LabVIEW: Unknown object (invalid DefProc). + + +LabVIEW: Unknown object (DefProc not in table). + + +LabVIEW: Message out of range. + + +LabVIEW: Null method. + + +LabVIEW: Unknown message. + + +LabVIEW: Manager call not supported. + + +LabVIEW: The network address is ill-formed. + + +LabVIEW: The network operation is in progress. + + +LabVIEW: The network operation exceeded the user-specified or system time limit. + + +LabVIEW: The network connection is busy. + + +LabVIEW: The network function is not supported by the system. + + +LabVIEW: The network is down, unreachable, or has been reset. + + +LabVIEW: The specified network address is currently in use. + + +LabVIEW: Serial port parity error. + + +LabVIEW: The system could not allocate the necessary memory. + + +LabVIEW: Serial port overrun error. + + +LabVIEW: The system caused the network connection to be aborted. + + +LabVIEW: Serial port receive buffer overflow. + + +LabVIEW: The network connection was refused by the server. + + +LabVIEW: Serial port framing error. + + +LabVIEW: The network connection is not yet established. + + +LabVIEW: Serial port timeout; bytes not received at serial port. + + +LabVIEW: The network connection is already established. + + +LabVIEW: The network connection was closed by the peer. + + +LabVIEW: Interapplication Manager initialization error. + + +LabVIEW: Bad occurrence. + + +LabVIEW: Handler does not know what occurrence to wait for. + + +LabVIEW: Occurrence queue overflow. + + +LabVIEW: File datalog type conflict. + + +LabVIEW: Semaphore not signaled. + + +LabVIEW: Interapplication Manager unrecognized type error. + + +LabVIEW: Memory or data structure corrupt. + + +LabVIEW: Failed to make temporary DLL. + + +LabVIEW: Old CIN version. + + +LabVIEW: Format specifier type mismatch. + + +LabVIEW: Unknown format specifier. + + +LabVIEW: Too few format specifiers. + + +LabVIEW: Too many format specifiers. + + +LabVIEW: Scan failed. + + +LabVIEW: Error converting to variant. + + +LabVIEW: Run-time menu error. + + +LabVIEW: Another user tampered with the VI password. + + +LabVIEW: Variant attribute not found. + + +LabVIEW: The data type of the variant is not compatible with the data type wired to the type input. + + +LabVIEW: (Hex 0x5C) The ActiveX event data was not available on the queue. + + +LabVIEW: (Hex 0x5D) ActiveX event information was not available. + + +LabVIEW: (Hex 0x5E) The occurrence associated with the ActiveX event was not found. + + +LabVIEW: The ActiveX event queue could not be created. + + +LabVIEW: ActiveX event information was not available in the type library. + + +LabVIEW: Null Refnum was passed in as input. + + +LabVIEW: Incorrect file type. Attempted to read from or write to a file of a type incompatible with the operation. Normally for user data files. + + +LabVIEW: Incorrect file version. Attempted to read from or write to a file of a version incompatible with the write/read function version. This file is normally a user data files. + + +LabVIEW: File contains erroneous data. Normally for user data files. + + +LabVIEW: IVI invalid downcast. + + +LabVIEW: No IVI class session opened. You must call the class driver Initialize VI before you can call a specific driver VI. This error can also occur if the IVI Logical Name control is set to the wrong IVI Class. + + +LabVIEW: Singlecast connections cannot send to multicast addresses. + + +LabVIEW: Multicast connections cannot send to singlecast addresses. + + +LabVIEW: Specified IP address is not in multicast address range. + + +LabVIEW: Cannot write to read-only multicast connection. + + +LabVIEW: Cannot read from write-only multicast connection. + + +LabVIEW: A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram was smaller than the datagram itself. + + +LabVIEW: Unflatten or byte stream read operation failed due to corrupt, unexpected, or truncated data. + + +LabVIEW: Directory path supplied where a file path is required. + + +LabVIEW: The supplied folder path does not exist. + + +LabVIEW: Illegal combination of Bluetooth discoverable and non-connectable modes. + + +LabVIEW: Error setting Bluetooth mode. + + +LabVIEW: Invalid GUID string. + + +LabVIEW: The resource you are attempting to open was created in a more recent version of LabVIEW and is incompatible with this version. + + +LabVIEW: You must supply a mode to change the offset of the Timed Loop. + + +LabVIEW: The VI is not in a state compatible with this operation. + + +LabVIEW: The VI front panel is not open. + + +LabVIEW: The VI cannot run because it has a front panel control in an error state. + + +LabVIEW: The VI is not executable. + + +LabVIEW: The VI is not in memory. + + +LabVIEW: VI execution has been disabled in the VI Properties dialog box. + + +LabVIEW: FPDCO on connector pane thinks it is constant. + + +LabVIEW: No IP record in summary. + + +LabVIEW: Cannot load connector pane. + + +LabVIEW: Variant tag out of range. + + +LabVIEW: No default or operate data. + + +LabVIEW: VI Creation failed. + + +LabVIEW: Cannot load block diagram. + + +LabVIEW: Cannot load front panel. + + +LabVIEW: Linker error. + + +LabVIEW: Printer is not responding. Check printer configuration. + + +LabVIEW: Cannot load History. + + +LabVIEW: VI has been modified on disk since it was last loaded or saved. + + +LabVIEW: Unspecified error occurred. + + +LabVIEW: Untitled SubVIs exist. + + +LabVIEW: This CIN can only be invoked from a registered wizard. + + +LabVIEW: Illegal Object Id passed to wizard CIN. + + +LabVIEW: Wizard Template not found. + + +LabVIEW: Wizard template does not have a diagram. + + +LabVIEW: Call Instrument aborted. + + +LabVIEW: Application Reference is invalid. + + +LabVIEW: VI Reference is invalid. + + +LabVIEW: For the requested operation, the reference cannot be reserved as requested, is in an improper reservation mode, or the execution state must be set to running or reserved. + + +LabVIEW: Attribute selector is invalid. + + +LabVIEW: VI Server property is read-only. + + +LabVIEW: VI Reference is already reserved for editing. + + +LabVIEW: VI Reference type does not match VI connector pane. + + +LabVIEW: VI Server access denied. + + +LabVIEW: Bad run-time menu file version. + + +LabVIEW: Bad run-time menu file. + + +LabVIEW: Operation is invalid for this type of VI. + + +LabVIEW: Method selector is invalid. + + +LabVIEW: Incompatible VI Server protocol version. + + +LabVIEW: Required parameter missing. + + +LabVIEW: VI was aborted. + + +LabVIEW: VI is password protected. + + +LabVIEW: Incorrect password. + + +LabVIEW: Attempted recursive call. + + +LabVIEW: The property or method is not supported in this version of LabVIEW. + + +LabVIEW: VI is locked. + + +LabVIEW: Null Refnum passed to Close Reference. + + +LabVIEW: LabVIEW cannot initialize the script server. + + +LabVIEW: LabVIEW failed to send variable to the script server. + + +LabVIEW: LabVIEW failed to get variable from the script server. + + +LabVIEW: LabVIEW failed to send script text to the script server. + + +LabVIEW: Error occurred while executing script. + + +LabVIEW: A LabVIEW file of that name already exists in memory. + + +LabVIEW: The LabVIEW filename is invalid. + + +LabVIEW: At run time, LabVIEW cannot find script support DLL. + + +LabVIEW: The specified object was not found. + + +LabVIEW: Object reference is invalid. + + +LabVIEW: Specified object is not scriptable in this version. + + +LabVIEW: Type mismatch: Object cannot be type casted to the specified type. + + +LabVIEW: Specified property not found. + + +LabVIEW: Unexpected file type. + + +LabVIEW: Object cannot contain (own) the specified object. + + +LabVIEW: Unable to create new object. + + +LabVIEW: Specified objects cannot be wired together. + + +LabVIEW: Specified terminal not found in the object. + + +LabVIEW: The specified VI may not be saved for previous because it resides in the vi.lib directory. + + +LabVIEW: The path to the VI to save is an empty or relative path. It must be an absolute path. + + +LabVIEW: Hardware open error. + + +LabVIEW: Hardware close error. + + +LabVIEW: Hardware transact error. + + +LabVIEW: Hardware DLL missing. + + +LabVIEW: Hardware no session error. + + +LabVIEW: Specified method not found. + + +LabVIEW: This property or method is not yet implemented. + + +LabVIEW: This property is writable only when the VI is in edit mode, or this method is available only when the VI is in edit mode. + + +LabVIEW: Cannot create a control/indicator for the specified terminal. + + +LabVIEW: Cannot create a constant for the specified terminal. + + +LabVIEW: VI is not debuggable. + + +LabVIEW: Invalid property value. + + +LabVIEW: Failed to load shared library %s on RT target device. + + +LabVIEW: RT target startup application missing. + + +LabVIEW: RT target startup application is corrupt. + + +LabVIEW: Exception caused by loading of library %s on RT target device. + + +LabVIEW: Operation not valid for strict type definition instance. + + +LabVIEW: Invalid connector pane pattern. + + +LabVIEW: Specified control or indicator cannot be hooked up to the connector pane. + + +LabVIEW: Invalid connector terminal. + + +LabVIEW: (Hex 0x43E) Wrong control type. + + +LabVIEW: (Hex 0x43F) There is no DataSocket information available for the object. + + +LabVIEW: Bad value for parameter. + + +LabVIEW: Error occurred while executing script. Error message from server: %s. + + +LabVIEW: Specified object cannot be moved. + + +LabVIEW: The VI Server or client received an unrecognized message. + + +LabVIEW: Invalid Class Operator VI. + + +LabVIEW: Specified object is not deletable. + + +LabVIEW: (Hex 0x446) Queue and notifier references of the same name must be obtained using the same data type. + + +LabVIEW: This container cannot be left without a subtype. Right-click the container border and select Replace or drag new subtype. + + +LabVIEW: (Hex 0x448) The Open VI Reference function cannot prepare non-reentrant VI for reentrant run. + + +LabVIEW: An exception occurred within the external code called by a Call Library Function Node. This might have corrupted LabVIEW's memory. Save any work to a new location and restart LabVIEW. + + +LabVIEW: Cannot disconnect type definitions or polymorphic VIs if the block diagram is not available. + + +LabVIEW: Scripting: SubVI is not loaded. + + +LabVIEW: No object of that name was found. No reference could be returned. + + +LabVIEW: (Hex 0x44D) Insufficient privileges to read, write, or create an item in the DataSocket Server. Use the DataSocket Server Manager to configure these privileges. + + +LabVIEW: The string input terminal is unwired. + + +LabVIEW: The XML tag describing the type of data is not recognized. + + +LabVIEW: No end tag was found for an XML start/end tag pair. + + +LabVIEW: An unknown or unexpected XML tag was discovered. + + +LabVIEW: The XML tag describing the type of data does not match the wired type. + + +LabVIEW: The XML enumerated type choice(s) does not match the wired type. + + +LabVIEW: XML value text is illegal or out of range for type and/or format. + + +LabVIEW: Unsupported data type. + + +LabVIEW: No longer used. + + +LabVIEW: Release Semaphore called on a semaphore that was not currently acquired. + + +LabVIEW: Internal Error. No class manager found for the type requested. + + +LabVIEW: Internal Error. The external object class was not found. + + +LabVIEW: This item is read-only. You must connect in read mode. + + +LabVIEW: This item is write-only. You must connect in write mode. + + +LabVIEW: RTTarget.DiskCache.SizeInKB config token must be greater than zero. + + +LabVIEW: RTTarget.DiskCache.Thread.Priority config token must be between -2 and 2. + + +LabVIEW: RTTarget.DiskCache.Thread.IntervalInSecs config token must be greater than zero. + + +LabVIEW: RTTarget.DiskCache.Thread.LinePerWakeup config token must be greater than or equal to zero. + + +LabVIEW: Not enough memory to create disk cache. + + +LabVIEW: Cannot create disk cache flush thread. + + +LabVIEW: Refnum became invalid while node waited for it. + + +LabVIEW: You cannot create an object (such as control caption) in built applications. You must create these objects in the LabVIEW development system. + + +LabVIEW: VI is not loadable. + +In a built application, this might be because the VI being loaded: + o was last compiled for a different OS, in which case you need to save the VI on the current platform. + o is a polymorphic VI, which can not be loaded in the Run-Time Engine. You should load an instance of the polymorphic VI instead of the polymorphic VI itself. + + +LabVIEW: VI version is later than the current LabVIEW version. + + +LabVIEW: VI version is too early to convert to the current LabVIEW version. + + +LabVIEW: Cannot instantiate template VI because it is already in memory. + + +LabVIEW: Input unit is not compatible with the current unit. + + +LabVIEW: You cannot assign the same value to two or more strings in a ring or combo box control. + + +LabVIEW: (Hex 0x46A) The VI Server connection peer is unresponsive. Refer to the LabVIEW Help for more information about connection polling. + + +LabVIEW: You cannot use this property with this system control. + + +LabVIEW: Busy with another operation. + + +LabVIEW: LabVIEW is busy connecting. + + +LabVIEW: A different read operation is in progress. + + +LabVIEW: The tree control's active item is not valid for this property. + + +LabVIEW: You wired an invalid item tag to a tree control property or method. + + +LabVIEW: Tree control's internal data is corrupt. + + +LabVIEW: An exception occurred within external code called by LabVIEW. This might have corrupted LabVIEW's memory. Save any work to a new location and restart LabVIEW. + + +LabVIEW: A DataSocket item name cannot contain certain characters. + + +LabVIEW: Exceeded maximum DataSocket item count. Use the DataSocket Server Manager to change the maximum number of dynamically created items the data server will allow. + + +LabVIEW: Exceeded maximum data item connection count. Use the DataSocket Server Manager to change the maximum number of connections the data server will allow. + + +LabVIEW: Multiple writers are not allowed. + + +LabVIEW: Cannot load dataskt.llb. + + +LabVIEW: Cannot insert VI in a subpanel control because VI is already open. + + +LabVIEW: Cannot open VI because it is already in a subpanel control. + + +LabVIEW: You attempted an operation that would change a child-only item into a parent item. + + +LabVIEW: Cannot insert a remote VI in a subpanel control. + + +LabVIEW: This property is read only while the VI is in a subpanel. + + +LabVIEW: Cannot close or set the state of a closed front panel. The front panel must already be open before you close it or set its state. + + +LabVIEW: Cannot open a front panel that is already open. To set the state of the open front panel, use the Front Panel Window:State property. + + +LabVIEW: Invalid input for front panel state. + + +LabVIEW: Cannot replace a locked object. + + +LabVIEW: Cannot replace object inside a group. + + +LabVIEW: Cannot replace this object with the type specified. + + +LabVIEW: Cannot insert the object of specified type into the wire. + + +LabVIEW: Memory full error, possibly due to a data format not matching expected data type. + + +LabVIEW: You cannot use this property with a numeric indicator. + + +LabVIEW: One or more application items already exist. + + +LabVIEW: Cannot find one or more application items. + + +LabVIEW: Illegal menu. + + +LabVIEW: Cannot find the menu because the front panel is not open. + + +LabVIEW: Cannot find one or more tags. + + +LabVIEW: Illegal shortcut. + + +LabVIEW: Cannot modify an application menu item. + + +LabVIEW: Cannot find the menu. + + +LabVIEW: One or more illegal menu item indexes. + + +LabVIEW: Cannot insert a group item as a menu bar item. + + +LabVIEW: Exceeded the maximum number of menus for this platform. The VI will use the default run-time menu. + + +LabVIEW: Cannot select the menu item because it is disabled or has a submenu attached to it. + + +LabVIEW: INTERNAL TO LABVIEW ONLY. DO NOT DOCUMENT TO USERS. Used by Queues and Notifiers to signal a condition in which they do not need to wait on data. + + +LabVIEW: You are attempting to start a new transaction when a transaction is currently underway. Please finish the current transaction before starting a new one. + + +LabVIEW: A .NET exception occurred. + + +LabVIEW: LabVIEW data type does not match the .NET type. + + +LabVIEW: Invalid return parameter for Call Library Function Node. The return type must be Void, Numeric, or String. Numeric return types are passed by value. Strings return types are passed as a C String Pointer or a Pascal String Pointer. + + +LabVIEW: Invalid array dimension in Call Library Function Node configuration. An array must have 1 or more dimensions. + + +LabVIEW: Invalid waveform dimension in Call Library Function Node configuration. A waveform must have 0 or 1 dimensions. + + +LabVIEW: Invalid data type for Call Library Function Node parameter. Void can be used only as return type of function. + + +LabVIEW: LabVIEW reached end of file. + + +LabVIEW: Access mode not supported for operation. + + +LabVIEW: Pending operation in progress. + + +LabVIEW: Protocol not recognized by LabVIEW. + + +LabVIEW: Error parsing URL. + + +LabVIEW: Synchronous operation not supported for protocol. + + +LabVIEW: Path not found, FTP login incorrect, or no FTP write permission. + + +LabVIEW: OPC item not found. + + +LabVIEW: Cannot show or hide the label on its own. Label visibility is controlled by the label owner. + + +LabVIEW: Internet Explorer is required for this operation but it is not installed. + + +LabVIEW: (Hex 0x4A4) The static VI reference is not configured. + + +LabVIEW: (Hex 0x4A5) You cannot register the same event on an object multiple times. + + +LabVIEW: The operation is not allowed when the control has key focus. + + +LabVIEW: The wire already has a probe on it. + + +LabVIEW: No data range set for digital displays. + + +LabVIEW: When a Boolean control has a latch mechanical action, you cannot use the Value property to read or write its value. + + +LabVIEW: This Express VI requires DIAdem 8.1 or later and the LabVIEW DIAdem Connectivity VIs version 2.1 or later. The Connectivity VIs are available for free download from ni.com. + + +LabVIEW: You must install the .NET Framework 1.1 Service Pack 1 or later for this operation. + + +LabVIEW: Cannot list the same terminal more than once in the grown region of the expandable subVI. + + +LabVIEW: (Hex 0x4AD) This operation is not valid for static VI references. To run a VI using a static VI reference, use an Invoke Node to call the Run VI method. + + +LabVIEW: (Hex 0x4AE) The VI is not in a state compatible with this operation. Change the execution mode of the referenced VI to reentrant for this operation. + + +LabVIEW: Cannot convert the specified LabVIEW type to .NET object. + + +LabVIEW: The dimension of the array passed in does not match the expected dimension for the operation. + + +LabVIEW: The size of the array passed in does not match the expected size of the array for the operation. + + +LabVIEW: The elements of the array are not unique. There are duplicated items in the array. + + +LabVIEW: The array index is outside of the array bounds. + + +LabVIEW: The required page cannot be found. + + +LabVIEW: Unable to load new code resource to the node. Code resource already loaded. + + +LabVIEW: Subpanel control could not open the VI window. + + +LabVIEW: The Property or Invoke Node is not linked to a front panel control. + + +LabVIEW: The Property or Invoke Node reference input terminal is already wired. + + +LabVIEW: The object is not in the same VI as the Property or Invoke Node. + + +LabVIEW: The input for class name is not correct or is in the wrong format. + + +LabVIEW: Structure frame index is out of range. + + +LabVIEW: You cannot use this property on a control in a radio buttons control. + + +LabVIEW: You cannot use this property on an instance of a type definition set to update automatically from the master copy of the type definition. + + +LabVIEW: You have attempted to create a data type with a descriptor that is too large. + + +LabVIEW: Specified method not found. + + +LabVIEW: Cannot load Facade VI. + + +LabVIEW: Run-time menu shortcuts are not supported for this kind of menu. + + +LabVIEW: Cannot insert a VI into a subpanel that is not in a running state. + + +LabVIEW: In edit mode, LabVIEW cannot return a property for a control part that you have not yet created. + + +LabVIEW: (Hex 0x529) NI License Manager is not initialized. + + +LabVIEW: Invalid project build reference. + + +LabVIEW: Invalid project source item reference. + + +LabVIEW: The specified key is invalid. + + +LabVIEW: (Hex 0x52D) LabVIEW cannot find the specified event. + + +LabVIEW: The specified project item is invalid. + + +LabVIEW: The specified NIIM is invalid for the current project. + + +LabVIEW: The instance of MAX associated with the project is invalid. + + +LabVIEW: The server site associated with the project is invalid. + + +LabVIEW: A provider associated with the project is invalid. + + +LabVIEW: A service provider associated with the project is invalid. + + +LabVIEW: The project site associated with the project is invalid. + + +LabVIEW: The project reference does not refer to a valid project. + + +LabVIEW: Unable to bind to the specified project item. + + +LabVIEW: Unable to update the specified item UI. + + +LabVIEW: The specified property is invalid. + + +LabVIEW: Not enough memory to complete this remote panel operation. + + +LabVIEW: Network type not supported by remote panel protocol. + + +LabVIEW: Remote panel connection is closed. + + +LabVIEW: Invalid server IP address. + + +LabVIEW: Remote panel connection refused by the specified server. + + +LabVIEW: Remote panel connection exceeds maximum number of licenses. + + +LabVIEW: Client does not have access to remote panel server. + + +LabVIEW: The remote panel protocol version is incompatible. + + +LabVIEW: The LabVIEW client version is incompatible with the LabVIEW server version. + + +LabVIEW: Server does not support remote panels. + + +LabVIEW: You cannot connect to the local LabVIEW application. + + +LabVIEW: Remote panel server failed to send the requested VI. + + +LabVIEW: Client does not have access to specified VI. + + +LabVIEW: Requested VI is broken and cannot be viewed or controlled. + + +LabVIEW: Requested VI is not a standard VI. You cannot view or control a polymorphic VI, custom control, or global variable VI remotely. + + +LabVIEW: Requested VI is not loaded into memory on the server computer. + + +LabVIEW: Requested VI is not in run mode. + + +LabVIEW: VI name required. + + +LabVIEW: Fatal error occurred during operation, closing connection. + + +LabVIEW: A remote panel connection does not exist for the specified VI. + + +LabVIEW: A LabVIEW file from that path already exists in memory. + + +LabVIEW: The splitter bar cannot be moved to this position because it violates the minimum or maximum size of a descendant pane. + + +LabVIEW: A drag cannot start because a previous drag transaction is still pending. + + +LabVIEW: Cannot provide the type of data requested for this drag and drop operation. + + +LabVIEW: The name or data type of a drag data element conflicts with the built-in LabVIEW drag data types. + + +LabVIEW: Cannot use this property with this string display mode or if word wrapping is enabled. + + +LabVIEW: The specified name or GUID is invalid. + + +LabVIEW: The provider plug-in is not installed or somehow corrupt. + + +LabVIEW: Failed to generate a valid GUID. + + +LabVIEW: You cannot hide or show the scroll bars of a subpanel control when a VI containing multiple panels is inserted. + + +LabVIEW: Unable to authenticate because the NI Security library failed to load. + + +LabVIEW: Unable to authenticate because LabVIEW failed to load an NI Security library that is required to authenticate access. + + +LabVIEW: Removing data connection from this control. + + +LabVIEW: The selected build failed to complete. + + +LabVIEW: Class library could not be loaded. + + +LabVIEW: Class private data control could not be loaded. + + +LabVIEW: Class could not be loaded. + + +LabVIEW: ScriptingLanguageError + + +LabVIEW: (Hex 0x55F) The Microsoft .NET Framework SDK 1.1 or later is not installed on this machine. + + +LabVIEW: A Diagram Disable structure cannot have a default frame. + + +LabVIEW: A Diagram Disable Structure cannot have conditions. + + +LabVIEW: Cannot set the Active Frame property on a Conditional Disable structure. + + +LabVIEW: The user failed a security authentication check. + + +LabVIEW: (Hex 0x564) License checkout failure. Unable to checkout the requested license feature because the license is invalid or does not exist. + + +LabVIEW: Cannot create semaphores with a size less than one. + + +LabVIEW: The Start Drag method failed because the control is configured to not allow dragging. + + +LabVIEW: The data type of the data read does not match the data type of the type input. + + +LabVIEW: Cannot start dragging because duplicate names for drag data types were passed to the Start Drag method or Drag Starting? event. + + +LabVIEW: Cannot start a drag and drop operation because the data provided is invalid. + + +LabVIEW: The specified .NET class is not available in LabVIEW. + + +LabVIEW: The specified .NET assembly is not available in LabVIEW. + + +LabVIEW: (Hex 0x56C) The block diagram you are attempting to access belongs to a VI that is either in evaluation mode or has an invalid license. + + +LabVIEW: (Hex 0x56D) You are attempting to save or copy a VI that is either in evaluation mode or has an invalid license. + + +LabVIEW: You attempted to open a VI Server reference to an out-of-scope VI. A VI can open VI Server references only to other VIs that it could call as subVIs. After the reference is opened, that VI can return the reference to other VIs that could not normally open the reference. + + +LabVIEW: Cannot set breakpoint on a Conditional Disable Structure that resides on a Simulation Diagram. + + +LabVIEW: LabVIEW classes do not support Revert if the library version has been bumped. There is insufficient information to undo a change to the live data in controls and indicators. To revert current changes, you must unload the class and all VIs that reference the class without saving any changes and then reload from disk. + + +LabVIEW: The LabVIEW Class is not in memory. This dynamic subVI cannot execute. Probe the wire going into the dynamic terminal to see the data type. Then open that LabVIEW class. + + +LabVIEW: This dynamic subVI cannot execute because the needed member VI cannot be found. + + +LabVIEW: The opening angle bracket was found in the open tag, but the closing angle bracket is missing from the open tag. + + +LabVIEW: Cannot convert text from the source character set to the destination character set. + + +LabVIEW: You have not wired a required input on this subVI. + + +LabVIEW: The subVI cannot be inlined because there is a local variable in the block diagram. + + +LabVIEW: The subVI cannot be inlined because a front panel terminal is not on the root diagram. + + +LabVIEW: Attempted to read flattened data of a LabVIEW class. The flat data could not be converted to the requested type because the flat data was not the same as the requested type nor was it any child class of the requested type. + + +LabVIEW: Attempted to read flattened data of a LabVIEW class. The version of the class currently in memory is older than the version of the data. You must find a newer version of the class to load this data. + + +LabVIEW: Attempted to read flattened data of a LabVIEW class. The data was written by an old version of the class, and the class no longer supports loading and mutating data from that version. + + +LabVIEW: Attempted to read flattened data of a LabVIEW class. The data is corrupt. It could not be interpreted as any valid flattened LabVIEW class. + + +LabVIEW: (Hex 0x57C) Cannot insert or delete menu items while LabVIEW is tracking this menu. This error occurs when you use the Insert Menu Items or Delete Menu Items function to add or remove a menu item while a user is interacting with the menu. + + +LabVIEW: Operator Overloading info for a datatype has unsupported version number. + + +LabVIEW: (Hex 0x57E) Target file name to be searched is empty + + +LabVIEW: Specified path to LV Targets Folder is not a Path + + +LabVIEW: Specified Target Folder path for the given LabVIEW Target is not valid + + +LabVIEW: Specified path for the given LabVIEW Target's directory is not a folder + + +LabVIEW: Specified LibDir in TargetDir chain has invalid path + + +LabVIEW: Specified LibDir in Target information file is not folder + + +LabVIEW: Specified path to Target's parent is not valid + + +LabVIEW: Specified path to Target's parent is not a folder + + +LabVIEW: Parent of a given target should not be contained within the target folder. + + +LabVIEW: Given Target Class Name is already registered with different Target Path + + +LabVIEW: This Target Class Name is already registered with different device class + + +LabVIEW: This Target Class name has not been instantiated + + +LabVIEW: Specified LabVIEW Target Name is empty + + +LabVIEW: LabVIEW Target URL is empty + + +LabVIEW: Application Instance Name or Target Alias is empty + + +LabVIEW: Empty TargetClass name + + +LabVIEW: Target is offline. + + +LabVIEW: Specified target syntax file for the given target could not be found + + +LabVIEW: Bad Application Reference + + +LabVIEW: Specified Application Instance not found + + +LabVIEW: Application Instance Name already in use under a given Target + + +LabVIEW: Application Instance of the given name exists but one or more properties do not match + + +LabVIEW: Application Instance has VIs running which need to be stopped and closed before executing the desired operations + + +LabVIEW: Command not supported by Target + + +LabVIEW: The path is empty or relative. You must use an absolute path. + + +LabVIEW: This property cannot be used on a front panel with splitters. + + +LabVIEW: The specified format may not be used with floating point data. For example, hexidecimal notation is not a valid format for floating point numbers. + + +LabVIEW: Absolute and Relative time formats may not be used with complex numbers. + + +LabVIEW: The precision is greater than the maximum allowed value for this format. + + +LabVIEW: Valid format values are from 0 to 8. + + +LabVIEW: Numeric precision can not be negative. + + +LabVIEW: This application menu item has been removed. Menu item tags that existed in previous versions of LabVIEW as LabVIEW application item tags cannot be used. + + +LabVIEW: Archive version is later than the current LabVIEW version. + + +LabVIEW: A project library cannot be copied to the same folder as the original library because the new library files would conflict with the original library files on disk. You must specify a different location on disk when copying a project library. + + +LabVIEW: The filename does not match the expected name. + + +LabVIEW: An error has occurred in the build. Rebuild from the Project Explorer window to generate a more detailed error message. + + +LabVIEW: The minimum pane size cannot be set to a value less than one. + + +LabVIEW: Debug connection refused by specified server: Only one debug connection is allowed per application or shared library. + + +LabVIEW: No VIs to download from application, connection closed. + + +LabVIEW: Open VI Reference will no longer match VIs in memory by file name. A VIs full name now includes any owning libraries so a filename is no longer sufficient. You can use strip path to wire the filename as a string, but this will not work for VIs in libraries. + + +LabVIEW: The description and tip strip of a control cannot be changed if in a reentrant VI with multiple instances. + + +LabVIEW: Start time input is not an integer multiple of dt. Value was coerced to nearest integer multiple of dt. + + +LabVIEW: Duration input is not an integer multiple of dt. Value was coerced to nearest integer multiple of dt. + + +LabVIEW: Waveforms have different dt values. + + +LabVIEW: Waveform x-axis value requested is out of range. + + +LabVIEW: Start index, value, or tolerance is NaN. + + +LabVIEW: Start index is out of range. + + +LabVIEW: Signal value input is outside the range of the digital data. + + +LabVIEW: Appending data with mismatched numbers of digital samples or signals. + + +LabVIEW: Values other than 0, 1, L, H are present in the digital data. + + +LabVIEW: Highest resolution supported for conversion is 52. + + +LabVIEW: Values other than 0, 1, L, and H are present in the digital data and were coerced to 0. + + +LabVIEW: This property does not contain data. + + +LabVIEW: The source control operation was cancelled before completion. + + +LabVIEW: A change occurred to the specified file while the operation was running. Reload the file. + + +LabVIEW: (Hex 0x12C0) Selected Device is Invalid + + +LabVIEW: (Hex 0x12C1) Invalid sound task refnum. + + +LabVIEW: (Hex 0x12C2) The sound device is busy. + + +LabVIEW: (Hex 0x12C3) The sound driver or card does not support the desired operation. + + +LabVIEW: (Hex 0x12C4) Cannot write in file playback. + + +LabVIEW: (Hex 0x12C5) Could not find the sound file. + + +LabVIEW: (Hex 0x12C6) DirectX 8.0 or higher is required to run. + + +LabVIEW: (Hex 0x12CA) Cannot recognize sound format. + + +LabVIEW: (Hex 0x12CB) Cannot support sound format. + + +LabVIEW: (Hex 0x12D4) A buffer underflow has occurred. + + +LabVIEW: (Hex 0x12D5) Overwrite error. + + +LabVIEW: (Hex 0x12D6) A timeout occurred before the operation finished. + + +LabVIEW: (Hex 0x12D7) A task must be running to perform this operation. + + +LabVIEW: Invalid refnum. + + +LabVIEW: Invalid string. + + +LabVIEW: A request for a synchronous advise transaction has timed out. + + +LabVIEW: The response to the transaction caused the DDE_FBUSY bit to be set. + + +LabVIEW: A request for a synchronous data transaction has timed out. + + +LabVIEW: The DDEML function was called without first calling the DdeInitialize function or an invalid instance identifier was pass to a DDEML function. + + +LabVIEW: An application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions. + + +LabVIEW: A request for a synchronous execute transaction has timed out. + + +LabVIEW: A parameter failed to be validated by the DDEML: e.g., the data handle is initialized with a different name-item or different clipboard data format than that required; the application used a client-side conversation handle with a server-side function, or vice-versa; the application used a freed data or string handle; or more than one instance of the application used the same object. + + +LabVIEW: A DDEML application has created a prolonged race condition (where the server application outruns the client), causing large amounts of memory to be consumed. + + +LabVIEW: A memory allocation failed. + + +LabVIEW: A transaction failed. + + +LabVIEW: A client's attempt to establish a conversation has failed. + + +LabVIEW: A request for a synchronous poke transaction has timed out. + + +LabVIEW: An internal call to the PostMessage function has failed. + + +LabVIEW: An application instance with a synchronous transaction already in progress attempted to initiate another synchronous transaction, or the DdeEnableCallback function was called from within a DDEML call function. + + +LabVIEW: A server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction. + + +LabVIEW: An internal error has occurred in the DDEML. + + +LabVIEW: A request to end an advise transaction has timed out. + + +LabVIEW: An invalid transaction identifier was passed to a DDEML function. After the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid. + + +LabVIEW: Invalid command code. + + +LabVIEW: Occurrence timeout; the transaction timed out before it completed. + + +LabVIEW: ActiveX Event data was not available. + + +LabVIEW: ActiveX Event Information was not available. + + +LabVIEW: The occurrence associated with the ActiveX Event was not found. + + +LabVIEW: The ActiveX Event queue could not be created. + + +LabVIEW: (Hex 0x3F53) 211 System status or system help reply. + + +LabVIEW: (Hex 0x3F56) 214 Help message. + + +LabVIEW: (Hex 0x3F5C) 220 "domain" Service ready. + + +LabVIEW: (Hex 0x3F5D) 221 domain service closing transmission channel. + + +LabVIEW: (Hex 0x3F7A) 250 Requested mail action okay, completed. + + +LabVIEW: (Hex 0x3F7B) 251 User not local; will forward to "forward-path." + + +LabVIEW: (Hex 0x3FE2) 354 Start mail input; end with two carriage-return/line-feed characters. + + +LabVIEW: (Hex 0x4025) 421 "domain" service not available, closing transmission channel. This might be a reply to any command if the service knows it must shut down. + + +LabVIEW: (Hex 0x4042) 450 Requested mail action not taken: mailbox unavailable. For example, the mailbox might be busy. + + +LabVIEW: (Hex 0x4043) 451 Requested action aborted: local error in processing. + + +LabVIEW: (Hex 0x4044) 452 Requested action not taken: insufficient system storage. + + +LabVIEW: (Hex 0x4074) 500 Syntax error, command unrecognized. For example, the command line might be too long. + + +LabVIEW: (Hex 0x4075) 501 Syntax error in parameters or arguments. + + +LabVIEW: (Hex 0x4076) 502 Command not implemented. + + +LabVIEW: (Hex 0x4077) 503 Bad sequence of commands. + + +LabVIEW: (Hex 0x4078) 504 Command parameter not implemented. + + +LabVIEW: (Hex 0x40A6) 550 Requested action not taken: mailbox unavailable. For example, the mailbox was not found or there is no access. + + +LabVIEW: (Hex 0x40A7) 551 User not local; try "forward-path." + + +LabVIEW: (Hex 0x40A8) 552 Requested mail action aborted: exceeded storage allocation. + + +LabVIEW: (Hex 0x40A9) 553 Requested action not taken: mailbox name not allowed. For example, the mailbox syntax might be incorrect. + + +LabVIEW: (Hex 0x40AA) 554 Transaction failed. + + +LabVIEW: The number of signals in Input Signal A does not match the number of signals in Input Signal B. Unmatched signals will be ignored. + + +LabVIEW: This slot-based variable has already been read within this network cycle or this shared-memory-based variable has never been instantiated by the owner. + + +LabVIEW: No new data has been received for more than one network cycle because no new data has been written to the channel on the source node. The source node is still on-line. + + +LabVIEW: No new data has been received for more than one network cycle because the source node is off-line + + +LabVIEW: One of the values received form the source node has not been read and has been overwritten + + +LabVIEW: One of the values has been overwritten before it has been sent. This warning is reported for non-shared-memory variables that have been written for more than once in a single network cycle. + + +LabVIEW: No data has been sent from this channel in the previous network cycle because write operation has been delayed beyond a preconfigured threshold. The delay was probably caused by an interrupt. + + +LabVIEW: Clock synchronization algorithm failed because enough cycle start packets have been missed - no more write network transactions will be allowed until the deterministic communication engine is restarted. + + + +LabVIEW: Read had to be retried at least once before it succeeded due to new data being placed into the buffer + + +LabVIEW: Network transmission violated requested timing. See documentation for more information about what might have caused the error and how can it be avoided + + +LabVIEW: An already deployed configuration for one or more network nodes does not match this node's configuration. + + +LabVIEW: A valid packet that does not follow to NI's deterministic protocol has been detected on the network. The node/network will be shut down. + + +LabVIEW: Generic project error. + + +LabVIEW: An item with this name already exists in the project. + + +LabVIEW: An item with this path already exists in the project. + + +LabVIEW: Adding this item would cause a conflict with an item already in memory. + + +LabVIEW: The project Item could not be found. + + +LabVIEW: The item type is not compatible with the target type. + + +LabVIEW: (Hex 0x3FFC0101) ID Query not supported. + + +LabVIEW: (Hex 0x3FFC0102) Reset not supported. + + +LabVIEW: (Hex 0x3FFC0103) Self-test not supported. + + +LabVIEW: (Hex 0x3FFC0104) Error Query not supported. + + +LabVIEW: (Hex 0x3FFC0105) Revision Query not supported + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/Measure-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/Measure-errors.txt new file mode 100755 index 0000000..3f5545f --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/Measure-errors.txt @@ -0,0 +1,28 @@ + + + + + + + +Measure: Task cannot be stopped, because at least one installed event handler has not been removed. + +Remove all installed event handlers by calling +CNiDAQmxEvent::RemoveEventHandler or CNiDAQmxEvent::RemoveAllEventHandlers. See the documentation for more information. + + +Measure: An analog output channel string represents multiple analog output channels. Measure requires that each analog output channel string contain only one analog output channel. + + +Measure: Excel is out of memory. Use a smaller range. + + +Measure: The range that is specified in the task's configuration is not valid. + + +Measure: The worksheet that is specified in the task's configuration does not exist. + + +Measure: Unable to find task. + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/NI-488-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/NI-488-errors.txt new file mode 100755 index 0000000..fd0d851 --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/NI-488-errors.txt @@ -0,0 +1,82 @@ + + + + + + + +NI-488: Error connecting to driver or device. + + +NI-488: Command requires GPIB Controller to be Controller-In-Charge. + + +NI-488: No Listeners on the GPIB. + + +NI-488: GPIB Controller not addressed correctly. + + +NI-488: Invalid argument or arguments to function call. + + +NI-488: Command requires GPIB Controller to be System Controller. + + +NI-488: I/O operation aborted. + + +NI-488: Nonexistent GPIB interface. + + +NI-488: DMA hardware error detected. + + +NI-488: DMA hardware uP bus timeout. + + +NI-488: Asynchronous I/O operation in progress. + + +NI-488: No capability for operation. + + +NI-488: File system operation error. + + +NI-488: Shareable board exclusively owned. + + +NI-488: GPIB bus error. + + +NI-488: Serial poll byte queue overflow. + + +NI-488: SRQ stuck in ON position. + + +NI-488: Unrecognized command. + + +NI-488: Board not present. + + +NI-488: Table error. + + +NI-488: No GPIB address input. + + +NI-488: No string input (write). + + +NI-488: No count input (read). + + +NI-488: Out of memory (MacBus read or write). + + +NI-488: Insufficient memory (MacBus read or write). + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/NI-Reports-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/NI-Reports-errors.txt new file mode 100755 index 0000000..b7493b6 --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/NI-Reports-errors.txt @@ -0,0 +1,31 @@ + + + + + + + +NI-Reports: This type of report is not supported on this platform. + + +NI-Reports: Invalid margins. + + +NI-Reports: Print error + + +NI-Reports: File open error. + + +NI-Reports: Invalid printer name + + +NI-Reports: Out of memory. + + +NI-Reports: An unknown error has occurred. + + +NI-Reports: (Hex 0xA028) Function not valid with current report type. + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/VISA-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/VISA-errors.txt new file mode 100755 index 0000000..5efc407 --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/.data/VISA-errors.txt @@ -0,0 +1,304 @@ + + + + + + + +VISA: (Hex 0xBFFF0000) Unknown system error (miscellaneous error). + + +VISA: (Hex 0xBFFF000E) The given session or object reference is invalid. + + +VISA: (Hex 0xBFFF000F) Specified type of lock cannot be obtained, or specified operation cannot be performed, because the resource is locked. + + +VISA: (Hex 0xBFFF0010) Invalid expression specified for search. + + +VISA: (Hex 0xBFFF0011) Insufficient location information or the device or resource is not present in the system. + + +VISA: (Hex 0xBFFF0012) Invalid resource reference specified. Parsing error. + + +VISA: (Hex 0xBFFF0013) Invalid access mode. + + +VISA: (Hex 0xBFFF0015) Timeout expired before operation completed. + + +VISA: (Hex 0xBFFF0016) The VISA driver failed to properly close the session or object reference. + + +VISA: (Hex 0xBFFF001B) Specified degree is invalid. + + +VISA: (Hex 0xBFFF001C) Specified job identifier is invalid. + + +VISA: (Hex 0xBFFF001D) The specified attribute is not defined or supported by the referenced resource. + + +VISA: (Hex 0xBFFF001E) The specified state of the attribute is not valid, or is not supported as defined by the resource. + + +VISA: (Hex 0xBFFF001F) The specified attribute is read-only. + + +VISA: (Hex 0xBFFF0020) The specified type of lock is not supported by this resource. + + +VISA: (Hex 0xBFFF0021) The access key to the specified resource is invalid. + + +VISA: (Hex 0xBFFF0026) Specified event type is not supported by the resource. + + +VISA: (Hex 0xBFFF0027) Invalid mechanism specified. + + +VISA: (Hex 0xBFFF0028) A handler was not installed. + + +VISA: (Hex 0xBFFF0029) The given handler reference is invalid. + + +VISA: (Hex 0xBFFF002A) Specified event context is invalid. + + +VISA: (Hex 0xBFFF002D) The event queue for the specified type has overflowed. This is usually due to previous events not having been closed. + + +VISA: (Hex 0xBFFF002F) You must be enabled for events of the specified type in order to receive them. + + +VISA: (Hex 0xBFFF0030) User abort occurred during transfer. + + +VISA: (Hex 0xBFFF0034) Violation of raw write protocol occurred during transfer. + + +VISA: (Hex 0xBFFF0035) Violation of raw read protocol occurred during transfer. + + +VISA: (Hex 0xBFFF0036) Device reported an output protocol error during transfer. + + +VISA: (Hex 0xBFFF0037) Device reported an input protocol error during transfer. + + +VISA: (Hex 0xBFFF0038) Bus error occurred during transfer. + + +VISA: (Hex 0xBFFF0039) Unable to queue the asynchronous operation because there is already an operation in progress. + + +VISA: (Hex 0xBFFF003A) Unable to start operation because setup is invalid (due to attributes being set to an inconsistent state). + + +VISA: (Hex 0xBFFF003B) Unable to queue the asynchronous operation. + + +VISA: (Hex 0xBFFF003C) Insufficient system resources to perform necessary memory allocation. + + +VISA: (Hex 0xBFFF003D) Invalid buffer mask specified. + + +VISA: (Hex 0xBFFF003E) Could not perform operation because of I/O error. + + +VISA: (Hex 0xBFFF003F) A format specifier in the format string is invalid. + + +VISA: (Hex 0xBFFF0041) A format specifier in the format string is not supported. + + +VISA: (Hex 0xBFFF0042) The specified trigger line is currently in use. + + +VISA: (Hex 0xBFFF0046) The specified mode is not supported by this VISA implementation. + + +VISA: (Hex 0xBFFF004A) Service request has not been received for the session. + + +VISA: (Hex 0xBFFF004E) Invalid address space specified. + + +VISA: (Hex 0xBFFF0051) Invalid offset specified. + + +VISA: (Hex 0xBFFF0052) Invalid access width specified. + + +VISA: (Hex 0xBFFF0054) Specified offset is not accessible from this hardware. + + +VISA: (Hex 0xBFFF0055) Cannot support source and destination widths that are different. + + +VISA: (Hex 0xBFFF0057) The specified session is not currently mapped. + + +VISA: (Hex 0xBFFF0059) A previous response is still pending, causing a multiple query error. + + +VISA: (Hex 0xBFFF005F) No listeners condition is detected (both NRFD and NDAC are deasserted). + + +VISA: (Hex 0xBFFF0060) The interface associated with this session is not currently the controller in charge. + + +VISA: (Hex 0xBFFF0061) The interface associated with this session is not the system controller. + + +VISA: (Hex 0xBFFF0067) The given session or object reference does not support this operation. + + +VISA: (Hex 0xBFFF0068) An interrupt is still pending from a previous call. + + +VISA: (Hex 0xBFFF006A) A parity error occurred during transfer. + + +VISA: (Hex 0xBFFF006B) A framing error occurred during transfer. + + +VISA: (Hex 0xBFFF006C) An overrun error occurred during transfer. A character was not read from the hardware before the next character arrived. + + +VISA: (Hex 0xBFFF006E) The path from trigSrc to trigDest is not currently mapped. + + +VISA: (Hex 0xBFFF0070) The specified offset is not properly aligned for the access width of the operation. + + +VISA: (Hex 0xBFFF0071) A specified user buffer is not valid or cannot be accessed for the required size. + + +VISA: (Hex 0xBFFF0072) The resource is valid, but VISA cannot currently access it. + + +VISA: (Hex 0xBFFF0076) Specified width is not supported by this hardware. + + +VISA: (Hex 0xBFFF0078) The value of some parameter (which parameter is not known) is invalid. + + +VISA: (Hex 0xBFFF0079) The protocol specified is invalid. + + +VISA: (Hex 0xBFFF007B) Invalid size of window specified. + + +VISA: (Hex 0xBFFF0080) The specified session currently contains a mapped window. + + +VISA: (Hex 0xBFFF0081) The given operation is not implemented. + + +VISA: (Hex 0xBFFF0083) Invalid length specified. + + +VISA: (Hex 0xBFFF0091) Invalid mode specified. + + +VISA: (Hex 0xBFFF009C) The current session did not have a lock on the resource. + + +VISA: (Hex 0xBFFF009E) A code library required by VISA could not be located or loaded. + + +VISA: (Hex 0xBFFF009F) The interface cannot generate an interrupt on the requested level or with the requested statusID value. + + +VISA: (Hex 0xBFFF00A0) The value specified by the line parameter is invalid. + + +VISA: (Hex 0xBFFF00A1) An error occurred while trying to open the specified file. Possible reasons include an invalid path or lack of access rights. + + +VISA: (Hex 0xBFFF00A2) An error occurred while performing I/O on the specified file. + + +VISA: (Hex 0xBFFF00A3) One of the specified lines, trigSrc or trigDest, is not supported by this VISA implementation, or the combination of lines is not a valid mapping. + + +VISA: (Hex 0xBFFF00A4) The specified mechanism is not supported for the given event type. + + +VISA: (Hex 0xBFFF00A5) The interface type is valid, but the specified interface number is not configured. + + +VISA: (Hex 0xBFFF00A6) The connection for the given session has been lost. + + +VISA: (Hex 0xBFFF00A7) The remote machine does not exist or is not accepting any connections. If the NI-VISA server is installed and running on the remote machine, it might have an incompatible version or might be listening on a different port. + + +VISA: (Hex 0xBFFF00A8) Access to the resource or remote machine is denied. This is due to lack of sufficient privileges for the current user or machine. + + +VISA: (Hex 0x0) Operation completed successfully. + + +VISA: (Hex 0x3FFF0002) Specified event is already enabled for at least one of the specified mechanisms. + + +VISA: (Hex 0x3FFF0003) Specified event is already disabled for at least one of the specified mechanisms. + + +VISA: (Hex 0x3FFF0004) Operation completed successfully, but queue was already empty. + + +VISA: (Hex 0x3FFF0005) The specified termination character was read. + + +VISA: (Hex 0x3FFF0006) The number of bytes transferred is equal to the requested input count. More data might be available. + + +VISA: (Hex 0x3FFF000C) VISA received more event information of the specified type than the configured queue size could hold. + + +VISA: (Hex 0x3FFF0077) The specified configuration either does not exist or could not be loaded. VISA-specified defaults will be used. + + +VISA: (Hex 0x3FFF007D) Session opened successfully, but the device at the specified address is not responding. + + +VISA: (Hex 0x3FFF007E) The path from trigSrc to trigDest is already mapped. + + +VISA: (Hex 0x3FFF0080) Wait terminated successfully on receipt of an event notification. There is at least one more event occurrence of the type specified by inEventType available for this session. + + +VISA: (Hex 0x3FFF0082) The specified object reference is uninitialized. + + +VISA: (Hex 0x3FFF0084) Although the specified state of the attribute is valid, it is not supported by this resource implementation. + + +VISA: (Hex 0x3FFF0085) The status code passed to the operation could not be interpreted. + + +VISA: (Hex 0x3FFF0088) The specified I/O buffer is not supported. + + +VISA: (Hex 0x3FFF0098) Event handled successfully. Do not invoke any other handlers on this session for this event. + + +VISA: (Hex 0x3FFF0099) Operation completed successfully, and this session has nested shared locks. + + +VISA: (Hex 0x3FFF009A) Operation completed successfully, and this session has nested exclusive locks. + + +VISA: (Hex 0x3FFF009B) Operation completed successfully, but the operation was actually synchronous rather than asynchronous. + + +VISA: (Hex 0x3FFF00A9) The operation succeeded, but a lower level driver did not implement the extended functionality. + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/English/lvapp.rsc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/English/lvapp.rsc new file mode 100755 index 0000000..9f43b99 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/English/lvapp.rsc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/English/vidialogs.rsc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/English/vidialogs.rsc new file mode 100755 index 0000000..b6db2df Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/English/vidialogs.rsc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/LV80NPlugin.so b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/LV80NPlugin.so new file mode 100755 index 0000000..48eeefa Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/LV80NPlugin.so differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/Analysis-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/Analysis-errors.txt new file mode 100755 index 0000000..c3b5fa4 --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/Analysis-errors.txt @@ -0,0 +1,901 @@ + + + + + + + +Analysis: Too many decimal points. + + +Analysis: Not a valid function. + + +Analysis: Incomplete function expression. + + +Analysis: Incomplete expression. + + +Analysis: Variables output problem. + + +Analysis: Inconsistency in variables or numbers. + + +Analysis: Contains more than one variable. + + +Analysis: Contains variables. + + +Analysis: Wrong variable name. + + +Analysis: Wrong letter. + + +Analysis: Wrong function call. + + +Analysis: Wrong number format. + + +Analysis: Wrong decimal point. + + +Analysis: Bracket problem at the end. + + +Analysis: Bracket problem at the beginning. + + +Analysis: Bracket problem. + + +Analysis: Argument out of range [0,1). + + +Analysis: Non-unique variables. + + +Analysis: Signal length not a power of two and >= 4. + + +Analysis: Signal length not a prime and >= 5. + + +Analysis: Signal length not a power of two. + + +Analysis: Signal length not a multiple of number. + + +Analysis: Invalid window length. + + +Analysis: Invalid time increment. + + +Analysis: Argument out of range [0,100]. + + +Analysis: Empty array. + + +Analysis: n < k + + +Analysis: Argument out of range [0,1]. + + +Analysis: Argument out of range (0,1]. + + +Analysis: Negative argument. + + +Analysis: Not exactly two variables. + + +Analysis: Derivative out of range. + + +Analysis: Parameter problem. + + +Analysis: No variables in expression. + + +Analysis: Not exactly two functions. + + +Analysis: Different parameters. + + +Analysis: Nonpositive number. + + +Analysis: Ill conditioned system + + +Analysis: Vectors have different dimensions or empty vectors. + + +Analysis: Maximum does not exist. + + +Analysis: No valid point. + + +Analysis: m >= n >= 0 is violated or the matrix of derivatives has the wrong dimension. + + +Analysis: The Levenberg Marquardt VI has failed. + + +Analysis: Wrong model equation. + + +Analysis: Not exactly one variable. + + +Analysis: No optimum found. + + +Analysis: Invalid triplet (a,b,c). + + +Analysis: No root found. + + +Analysis: Wrong dimension of start. + + +Analysis: Nonpositive accuracy or nonpositive delta x(h). + + +Analysis: Both function values have the same sign. + + +Analysis: Left point greater than right point. + + +Analysis: Right point is a root. + + +Analysis: Left point is a root. + + +Analysis: Multiple roots. + + +Analysis: Singular eigenvector matrix. + + +Analysis: Empty X0. + + +Analysis: A and X0 have different dimensions. + + +Analysis: Matrix vector conflict. + + +Analysis: Nonpositive accuracy. + + +Analysis: Nonpositive step rate. + + +Analysis: Wrong input, Cash Karp method. + + +Analysis: Wrong input, Runge Kutta method. + + +Analysis: Wrong input, Euler method. + + +Analysis: Not a graphs file. + + +Analysis: Not a valid path. + + +Analysis: Negative distance. + + +Analysis: Number of color palettes out of range. + + +Analysis: Number of contours out of range. + + +Analysis: Discrepancy between function, variables and coordinates. + + +Analysis: Syntax error of parser. + + +Analysis: The starting error codes of engineering math. + + +Analysis: Serious algorithm failure. Call National Instruments support. + + +Analysis: The format of the data file for the wavelet filter bank is invalid. + + +Analysis: Cannot open the data file for the wavelet filter bank. + + +Analysis: The wavelet packet session or handle must refer to a full tree. + + +Analysis: The wavelet packet handle or session is invalid or the data space it refers to does not contain the necessary information. + + +Analysis: Invalid dimensions of the wavelet coefficients. + + +Analysis: Invalid optional parameter to find the optimal path. + + +Analysis: The trend level must be no less than zero and no greater than 1.0. + + +Analysis: The time step must be greater than zero. + + +Analysis: The node must be a terminal node. + + +Analysis: The node must not be a terminal node. + + +Analysis: The path or node string must contain only "0" or "1". + + +Analysis: The lengths of the analysis filters or synthesis filters must be greater than zero. + + +Analysis: The refinement level for computing the mother wavelet must be greater than zero. + + +Analysis: Shift must be 0 or 1. + + +Analysis: Shift must be no less than zero and less than the decimation factor or interpolation factor. + + +Analysis: The interpolation factor must be greater than or equal to two. + + +Analysis: The decimation factor must be greater than or equal to two. + + +Analysis: The scale of the wavelet decomposition must be greater than zero. + + +Analysis: The selection of the wavelet type is invalid. + + +Analysis: The largest order must be greater than the initial order and no greater than two-thirds of the length of the input signal. + + +Analysis: The initial order must be no less than 1. + + +Analysis: The AR order must be greater than or equal to the number of complex sinusoids. + + +Analysis: The number of complex sinusoids must be greater than zero and no greater than two-thirds of the length of the input signal. + + +Analysis: The order for the AR model must be greater than zero and no greater than two-thirds of the length of the input signal. + + +Analysis: The index of the 2D array stored in the refnum is out of range. + + +Analysis: The refnum does not support this operation. + + +Analysis: The refnum is invalid. + + +Analysis: Failure to create the refnum. + + +Analysis: The parameters of the frequency information are invalid for further computation. + + +Analysis: The parameters of the window information are invalid for further computation. + + +Analysis: The dimensions of the kernel must be greater than zero and power of two values. The column size of the kernel must be 2^(ceil(log2(Ls-1))), where Ls is the length of the input signal. + + +Analysis: The variance of the Gaussian window must be greater than zero. + + +Analysis: The size of the window must be greater than zero. + + +Analysis: The number of terms must be greater than zero. + + +Analysis: The oversampling rate must be greater than or equal to one. + + +Analysis: The order must be greater than or equal to zero. + + +Analysis: The time interval must be a power of two. + + +Analysis: The time interval must be greater than zero. + + +Analysis: The selection for the enumerated data type parameter is invalid. + + +Analysis: The number of frequency bins must be greater than zero and a power of two. + + +Analysis: The sample rate must be greater than zero. + + +Analysis: The input signal is empty. + + +Analysis: CVI Could not create the required mutex. + + +Analysis: CVI Could not find specified function in the DLL + + +Analysis: CVI Could not load Spectral Measurement Toolset DLL + + +Analysis: Invalid SMT session handle. + + +Analysis: Incorrect averaging type specified. + + +Analysis: Incorrect type of the input spectrum data. + + +Analysis: You must specify either FFT bins or RBW. + + +Analysis: Sampling frequency should be greater than zero. + + +Analysis: The internal buffer is overflowed by input data. + + +Analysis: FFT size must be greater than zero. + + +Analysis: The zoom factor must be greater than zero. + + +Analysis: The specified time stamp is after the end of the limit. + + +Analysis: Values of the X array contained in the Limit Specification cluster are not monotonically increasing. + + +Analysis: Waveforms are not contiguous. + + +Analysis: Cannot align waveforms because their time stamps are separated by more than 10 times the duration of the longest waveform. + + +Analysis: Cannot align two waveforms with same dt if their samples are not clocked in-phase. + + +Analysis: Internal error: The number of threads attribute is less than zero. If the problem persists, contact National Instruments technical support. + + +Analysis: Internal error: The parameter struct pointer is Null, possibly because of changes to the calling VI block diagram. If the problem persists, contact National Instruments technical support. + + +Analysis: Internal error: The cursor struct pointer is Null, possibly because of a change to the calling VI block diagram. If the problem persists, contact National Instruments technical support. + + +Analysis: Internal error: The result pointer is Null, possibly because of changes to the calling VI block diagram. If the problem persists, contact National Instruments technical support. + + +Analysis: Failure initializing a critical section in measurement code, possibly due to low memory. If the problem persists, contact National Instruments technical support. + + +Analysis: An exception occurred in the measurement code, possibly due to low memory. If the problem persists, contact National Instruments technical support. + + +Analysis: Internal error: Invalid measurement ID number. Contact National Instruments technical support. + + +Analysis: Internal error: Two measurements share the same ID number. If the problem persists, contact National Instruments technical support. + + +Analysis: The edge number, pulse number, or cycle parameter value must be greater than zero. + + +Analysis: Internal error: The attribute number does not refer to a valid parameter. Check the input parameters reference levels, percent level settings, and state settings. + + +Analysis: Internal Error: The measurement session handle is invalid. If the problem persists, contact National Instruments technical support. + + +Analysis: Internal error: The requested measurement is not available. If the problem persists, contact National Instruments technical support. + + +Analysis: The period of the waveform is too short to perform the measurement. + + +Analysis: The result is not a number (NaN) or infinite. + + +Analysis: The histogram size parameter value is less than or equal to zero. + + +Analysis: The slew rate is infinite because the rise or fall time is zero. + + +Analysis: Illegal percent method parameter. Check the method enum input. + + +Analysis: The waveform dt parameter is <= 0. + + +Analysis: Illegal reference level units parameter. Check the ref units text ring input. + + +Analysis: Reference levels must satisfy: low ref <= mid ref <= high ref. + + +Analysis: The input waveform size is zero. + + +Analysis: Insufficient memory available for waveform measurement. + + +Analysis: The waveform did not have enough edges to perform this measurement. An edge is defined as a crossing of both the low and high reference levels. Check the signal length, reference levels, and ref level units. + + +Analysis: The amplitude of the waveform is zero, so the histogram method cannot be used. + + +Analysis: The waveform did not cross the mid reference level enough times to perform this measurement. Check the signal length, reference levels, and ref level units. + + +Analysis: Frequency not a multiple of (Sampling Rate)/Samples. + + +Analysis: The two time signal waveforms contain different dt. + + +Analysis: The two time signal waveforms contain different number of data points. + + +Analysis: At least one of the time signal waveforms does not contain the correct dt to continue the averaging process. + + +Analysis: At least one of the time signal waveforms does not contain the correct number of data points to continue the averaging process. + + +Analysis: The time signal waveform does not contain the correct dt to continue the averaging process. + + +Analysis: The time signal waveform does not contain the correct number of data points to continue the averaging process. + + +Analysis: The upper limit is less than the lower limit. + + +Analysis: Shifts: n is negative. + + +Analysis: The sample length is less than the window length. + + +Analysis: The window length is not positive. + + +Analysis: The time increment is not positive. + + +Analysis: The sample length is negative. + + +Analysis: The sample length is not positive. + + +Analysis: The input must be non-zero. + + +Analysis: The input must be greater than zero. + + +Analysis: Loss of Significance + + +Analysis: Feasible solution not found. + + +Analysis: The FFT size must be greater than zero. + + +Analysis: The start value wired to the Polynomial Real Zeros Counter VI is greater than the end value. + + +Analysis: The end value wired to the Polynomial Real Zeros Counter VI is a root. + + +Analysis: The start value wired to the Polynomial Real Zeros Counter VI is a root. + + +Analysis: The input polynomial coefficients are all zeros. + + +Analysis: Input parameters have at least one NaN element. + + +Analysis: The order must be greater than or equal to zero. + + +Analysis: The shifts must meet: |shifts| < samples. + + +Analysis: Parameter must meet the condition Top > Base + + +Analysis: The AR order must be greater than or equal to the number of complex sinusoids. + + +Analysis: The AR order must not be greater than two-thirds of the number of samples. + + +Analysis: The number of complex sinusoids must not be greater than two thirds of the number of samples. + + +Analysis: The AR order must be > 0. + + +Analysis: The number of complex sinusoids must be > 0. + + +Analysis: The size of the initial or final condition array is not correct. + + +Analysis: df must be > 0. + + +Analysis: The dual function does not exist. + + +Analysis: The Gabor coefficient array does not have the correct dimension. + + +Analysis: The order of the Gabor spectrogram must be >=0. + + +Analysis: The oversampling rate, N / dM, must be >=1. + + +Analysis: The length of the analysis or synthesis window must be evenly divisible by the number of frequency bins, N, which must be a power of 2. + + +Analysis: The length of the analysis or synthesis window must be evenly divisible by the Gabor time sampling interval, dM. + + +Analysis: Window length must be > 2 and a power of 2. + + +Analysis: The size of the input array and its Hilbert transform must be equal. + + +Analysis: Time increment must not be greater than (window length)/4. + + +Analysis: Window length must be > 4 and a power of 2. + + +Analysis: Time increment must not be greater than dM. + + +Analysis: dN or time interval must be greater than zero. + + +Analysis: Time increment must be greater than the (window length)/16 + + +Analysis: The seed is invalid. + + +Analysis: This functionality is not supported on this platform. + + +Analysis: The time points are not in ascending order. + + +Analysis: The resample point cannot be calculated with the signal behind that of the input. + + +Analysis: The filter buffer overflows. + + +Analysis: Reordering eigenvalues changed some complex ones. + + +Analysis: The eigenvalues cannot be reordered because some of them are too close. + + +Analysis: The logarithm of the input matrix cannot be computed. + + +Analysis: The input matrix is not positive definite. + + +Analysis: Matrices must have the same size. + + +Analysis: The number of samples must be greater than or equal to four. + + +Analysis: Input parameters has at least one element that is Inf, NaN, DBL_MAX, or DBL_MIN + + +Analysis: The input fundamental frequency or sampling rate is equal to zero. + + +Analysis: The information in IIR filter structure is not correct. + + +Analysis: The elements in the vector can not be all zero. + + +Analysis: The internal memory state of this function was not initialized correctly. + + +Analysis: The coefficients of the polynomial are invalid. + + +Analysis: The maximum number of iterations was exceeded. + + +Analysis: The selection is invalid. + + +Analysis: Divide by zero error. + + +Analysis: Negative number error + + +Analysis: Invalid number of dimensions or dependent variables + + +Analysis: The parameter to the beta function should be 0 < p < 1 + + +Analysis: The contingency table has a negative number. + + +Analysis: The number of categories or samples must be greater than one. + + +Analysis: The probability must be greater than or equal to zero and less than one. + + +Analysis: The probability must be between zero and one. + + +Analysis: The degree of freedom must be greater than zero and less than the length of the input sequence. + + +Analysis: All values in the first column of X matrix must be one. + + +Analysis: The interpolating function has a pole at the requested value. + + +Analysis: The x-values must be distinct. + + +Analysis: The Random Effect model was requested when the Fixed Effect model is required. + + +Analysis: The data is unbalanced. All cells must contain the same number of observations. + + +Analysis: There is an overflow in the calculation. + + +Analysis: The total number of data points must be equal to the product of levels/each factor * observations/cell. + + +Analysis: Zero observations were made at some level of a factor. + + +Analysis: The level of factors is outside the allowable range of some data. + + +Analysis: The number of levels is out of range. + + +Analysis: The system of equations cannot be solved because the input matrix is singular. + + +Analysis: The input matrix must be a square matrix. + + +Analysis: The number of columns in the first matrix is not equal to the number of rows in the second matrix or vector. + + +Analysis: The number of intervals must be > 0. + + +Analysis: The number of data points in the Y Values array must be greater than the order. + + +Analysis: The elements of the Y Values array must be nonzero and either all positive or all negative. + + +Analysis: The standard deviation must be greater than zero for normalization. + + +Analysis: The number of coefficients must be even for this filter. + + +Analysis: The number of coefficients must be odd for this filter. + + +Analysis: The rank of the filter must meet: 1 <= (2*rank + 1) <= size. + + +Analysis: The filter cannot be designed with the specified input values. + + +Analysis: The leakage coefficient, leak, and step-size parameter, u, must meet: 0 <= leak <= u. + + +Analysis: The step-size, u, must meet: 0 <= u <= 0.1. + + +Analysis: The attenuation value must be greater than the ripple amplitude. + + +Analysis: The final value must be > 0. + + +Analysis: The width must be > 0. + + +Analysis: The attenuation must be > 0. + + +Analysis: The ripple amplitude must be > 0. + + +Analysis: The following conditions must be met: 0 < f_low <= f_high <= fs/2. + + +Analysis: The decimating factor must meet: 0 < decimating factor <= samples. + + +Analysis: The order must be > 0. + + +Analysis: The cut-off frequency, fc, must meet: 0 <= fc <= fs/2. + + +Analysis: The upper value must be >= the lower value. + + +Analysis: The following condition must be met: 0 <= (index + length) < samples. + + +Analysis: The following condition must be met: 0 <= index < samples. + + +Analysis: dt must be > 0. + + +Analysis: dt must be >= 0. + + +Analysis: The following conditions must be met: 0 <= (delay + width) < samples. + + +Analysis: The width must meet: 0 < width < samples. + + +Analysis: The number of cycles must be > 0 and <= the number of samples. + + +Analysis: The duty cycle must be equal to or fall between 0 and 100: 0 <= duty cycle <= 100. + + +Analysis: The maximum allowable transform size has been exceeded. + + +Analysis: The size of the input array must be a power of two: size = 2^m, 0 < m < 23. + + +Analysis: The input arrays do not contain the correct number of data values for this function. + + +Analysis: The number of samples must be >= 3. + + +Analysis: The number of samples must be >= 2. + + +Analysis: The number of samples must be greater than or equal to 1. + + +Analysis: The number of samples must be >= 0. + + +Analysis: The number of samples must be > 0. + + +Analysis: The input sequences must be the same size. + + +Analysis: There is not enough memory to perform the specified routine. + + +Analysis: The matrix is rank deficient. + + +Analysis: The number of samples must be greater than zero. + + +Analysis: The matrix is singular. + + +Analysis: Matrices or vectors do not have the same size. + + +Analysis: LabVIEW cannot reorder the generalized eigenvalues. + + +Analysis: The computation result might be inaccurate. + + +Analysis: The sizes of the input arrays do not meet the specified conditions. + + +Analysis: The input standard deviation is invalid. + + +Analysis: The input polynomial is empty. + + +Analysis: Some frequencies violate Nyquist criteria. + + +Analysis: The input matrix has at least one element with a value of Inf or NaN. + + +Analysis: Frequency was coerced to the nearest multiple of (sampling rate)/samples. + + +Analysis: Waveforms are not overlapping. + + +Analysis: The averaging process was automatically restarted to respond to a change in the averaging parameters. + + +Analysis: Current and previous waveforms are not contiguous. + + +Analysis: Current and previous dt not equal. + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/IAK_SHARED-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/IAK_SHARED-errors.txt new file mode 100755 index 0000000..b3a596b --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/IAK_SHARED-errors.txt @@ -0,0 +1,217 @@ + + + + + + + +IAK_SHARED: (Hex 0x8ABC7001) Installed library is the wrong version. + + +IAK_SHARED: (Hex 0x8ABC7002) Client attempted to call a function on an unregistered library. + + +IAK_SHARED: (Hex 0x8ABC7003) Operation timed out. + + +IAK_SHARED: (Hex 0x8ABC7004) Syntax error. + + +IAK_SHARED: (Hex 0x8ABC7005) Stack overflowed. + + +IAK_SHARED: (Hex 0x8ABC7006) Unable to start service. + + +IAK_SHARED: (Hex 0x8ABC7007) Out of range. + + +IAK_SHARED: (Hex 0x8ABC7008) Object not found. + + +IAK_SHARED: (Hex 0x8ABC7009) Object already exists. + + +IAK_SHARED: (Hex 0x8ABC700A) Not found. + + +IAK_SHARED: (Hex 0x8ABC700B) Object or collection is not empty. + + +IAK_SHARED: (Hex 0x8ABC700C) Client attempted to call a registration function more than once. + + +IAK_SHARED: (Hex 0x8ABC700D) Invalid result type. + + +IAK_SHARED: (Hex 0x8ABC700E) Invalid operation. + + +IAK_SHARED: (Hex 0x8ABC700F) Invalid argument(s). + + +IAK_SHARED: (Hex 0x8ABC7010) Initialization failed. + + +IAK_SHARED: (Hex 0x8ABC7011) Write file operation failed. + + +IAK_SHARED: (Hex 0x8ABC7012) Read file operation failed. + + +IAK_SHARED: (Hex 0x8ABC7013) End of file. + + +IAK_SHARED: (Hex 0x8ABC7014) Failed to de-serialize. + + +IAK_SHARED: (Hex 0x8ABC7015) Unable to complete request. Connection failed. + + +IAK_SHARED: (Hex 0x8ABC7016) Operation cancelled. + + +IAK_SHARED: (Hex 0x8ABC7017) Buffer overflowed. + + +IAK_SHARED: (Hex 0x8ABC7018) Attempt to advertise service to Logos Classified Ads failed. + + +IAK_SHARED: (Hex 0x8ABC7019) Access denied. + + +IAK_SHARED: (Hex 0x8ABC701A) Buffer underflowed. + + +IAK_SHARED: (Hex 0x8ABC701B) File already exists. + + +IAK_SHARED: (Hex 0x8ABC701C) The provided refnum is invalid. + + +IAK_SHARED: (Hex 0x8ABC701D) A null refnum was provided as input. + + +IAK_SHARED: (Hex 0x8ABC7020) Unexpected OS exception occurred. + + +IAK_SHARED: (Hex 0x8ABC7021) Failed to load library. + + +IAK_SHARED: (Hex 0x8ABC7022) Class not found. + + +IAK_SHARED: (Hex 0x8ABC7023) No known value. + + +IAK_SHARED: (Hex 0x8ABC7024) Invalid locale. + + +IAK_SHARED: (Hex 0x8ABC7030) Invalid UTF8 encoding sequence. + + +IAK_SHARED: (Hex 0x8ABC7031) Citadel ran out of shared memory. + + +IAK_SHARED: (Hex 0x8ABC7032) Badly formatted GUID string. + + +IAK_SHARED: (Hex 0x8ABC7033) Bad Type + + +IAK_SHARED: (Hex 0x8ABCB001) Generic security error. + + +IAK_SHARED: (Hex 0x8ABCB002) Version is not supported by peer. + + +IAK_SHARED: (Hex 0x8ABCB003) Account is locked. + + +IAK_SHARED: (Hex 0x8ABCB004) Logos session timed out or is locked out by other users. + + +IAK_SHARED: (Hex 0x8ABCB005) The specified user does not exist. + + +IAK_SHARED: (Hex 0x8ABCB006) The specified group does not exist. + + +IAK_SHARED: (Hex 0x8ABCB007) Duplicate name. + + +IAK_SHARED: (Hex 0x8ABCB008) Message is corrupted. + + +IAK_SHARED: (Hex 0x8ABCB009) The domain server failed to complete a function. + + +IAK_SHARED: (Hex 0x8ABCB00A) Cannot delete built-in principals. + + +IAK_SHARED: (Hex 0x8ABCB00B) Invalid password. + + +IAK_SHARED: (Hex 0x8ABCB00C) Not a local computer. + + +IAK_SHARED: (Hex 0x8ABCB00D) Not an administrator. + + +IAK_SHARED: (Hex 0x8ABCB00E) Domain is not defined. + + +IAK_SHARED: (Hex 0x8ABCB00F) Domain already exists. + + +IAK_SHARED: (Hex 0x8ABCB010) Password is too short or too long. + + +IAK_SHARED: (Hex 0x8ABCB011) Machine is denied access. + + +IAK_SHARED: (Hex 0x8ABCB012) Requested data denied. + + +IAK_SHARED: (Hex 0x8ABCB020) Cannot lock account. + + +IAK_SHARED: (Hex 0x8ABCB021) Network connection timed out. + + +IAK_SHARED: (Hex 0x8ABCB022) File corrupted. + + +IAK_SHARED: (Hex 0x8ABCB023) Network is disconnected. + + +IAK_SHARED: (Hex 0x8ABCB024) Requested data not found. + + +IAK_SHARED: (Hex 0x8ABCB025) Operation cancelled by user. + + +IAK_SHARED: (Hex 0x8ABCB026) Attempt to advertise service to Logos Classified Ads failed. + + +IAK_SHARED: (Hex 0x8ABCB030) Message size less than one block. + + +IAK_SHARED: (Hex 0x8ABCB031) Failed to generate random number. + + +IAK_SHARED: (Hex 0x8ABCB032) Passwords do not match. + + +IAK_SHARED: (Hex 0x8ABCB034) Password too short. + + +IAK_SHARED: (Hex 0x8ABCB035) Password too long. + + +IAK_SHARED: (Hex 0x8ABCB036) Domain already added. + + +IAK_SHARED: (Hex 0x8ABCB037) No more principals. + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/LabVIEW b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/LabVIEW new file mode 100755 index 0000000..7a8de80 --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/LabVIEW @@ -0,0 +1,172 @@ + + + + + + + +LabVIEW Simulation Module: The value of the Decimation parameter for the Collector function must be greater than or equal to 1. + + +LabVIEW Simulation Module: The number of elements in the input array does not equal the number of columns in the gain matrix. + + +LabVIEW Simulation Module: You cannot change the maximum delay while the simulation is running. + + +LabVIEW Simulation Module: For fixed step-size ODE solvers, the delay must be less than or equal to the specified maximum delay. + + +LabVIEW Simulation Module: The specified parameter is a vector. Enter a vector value. + + +LabVIEW Simulation Module: The specified parameter is a scalar. Enter a scalar value. + + +LabVIEW Simulation Module: The parameter name is not in the specified parameter list. + + +LabVIEW Simulation Module: The given State Derivatives are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given Outputs are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given Inputs are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given States are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given Outputs are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given Inputs are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The given States are incompatible with the specified subsystem. + + +LabVIEW Simulation Module: The Simulation initial time cannot be greater than or equal to the final time. + + +LabVIEW Simulation Module: The Linearizer detected an error while computing the Jacobian Matrix. + + +LabVIEW Simulation Module: The ODE solver could not factor the Jacobian Matrix. + + +LabVIEW Simulation Module: The ODE solver could not compute the Jacobian Matrix. + + +LabVIEW Simulation Module: You can linearize only simulation subsystems. + + +LabVIEW Simulation Module: The simulation diagram returned NaN to the ODE solver. + + +LabVIEW Simulation Module: The simulation diagram returned an overflow to the ODE solver. + + +LabVIEW Simulation Module: An overflow occurred in the ODE solver. + + +LabVIEW Simulation Module: The time step must be between the minimum and maximum time steps. + + +LabVIEW Simulation Module: The minimum time step must be less than or equal to the maximum time step. + + +LabVIEW Simulation Module: The absolute tolerance and relative tolerance cannot both be zero. + + +LabVIEW Simulation Module: The discrete time step is not an integer multiple of the time step. + + +LabVIEW Simulation Module: The simulation time step cannot be zero. + + +LabVIEW Simulation Module: Invalid use of the Linearize Subsystem dialog box. The Linearize Subsystem dialog box must be used only on subsystem VIs. + + +LabVIEW Simulation Module: You can use the Linearize Subsystem dialog box only if you have created a VI under My Computer in the Project Explorer. + + +LabVIEW Simulation Module: The ODE solver Newton Iteration did not converge at the minimum time step. + + +LabVIEW Simulation Module: The ODE solver cannot meet the error tolerance using the minimum time step. + + +LabVIEW Simulation Module: The simulation time step is negative or zero. + + +LabVIEW Simulation Module: The Execution Mode is not consistent with the specified discrete integration method. + + +LabVIEW Simulation Module: The sample rate divisor is negative or zero. + + +LabVIEW Simulation Module: This intermediate solver evaluation should not have been executed. + + +LabVIEW Simulation Module: The dimensions of the arrays for the Lookup Table are inconsistent. + + +LabVIEW Simulation Module: The dimensions of the parameter vectors of this function do not match. + + +LabVIEW Simulation Module: The Execution Mode is not consistent with the specified discrete integration method. + + +LabVIEW Simulation Module: The order of the numerator must be greater than the order of the denominator. + + +LabVIEW Simulation Module: You must match complex entries in the Zero-Pole-Gain function with a complex conjugate. + + +LabVIEW Simulation Module: The order of the numerator and the order of the denominator are inconsistent. + + +LabVIEW Simulation Module: The size of the initial condition vector is incorrect for the MIMO system. + + +LabVIEW Simulation Module: The size of the input vector is incorrect for the MIMO system. + + +LabVIEW Simulation Module: The system model order has changed from the previous iteration of the Simulation Loop. + + +LabVIEW Simulation Module: Ill-conditioned MIMO system. + + +LabVIEW Simulation Module: The period is negative or zero. + + +LabVIEW Simulation Module: The duty cycle is out of range. + + +LabVIEW Simulation Module: Evaluating a single-step solver on a minor substep. + + +LabVIEW Simulation Module: The frequency is negative or zero. + + +LabVIEW Simulation Module: The target time is less than or equal to the simulation initial time. + + +LabVIEW Simulation Module: The upper limit is less than the lower limit. + + +LabVIEW Simulation Module: The switch on point is less than the switch off point. + + +LabVIEW Simulation Module: The quantization interval is less than or equal to zero. + + +LabVIEW Simulation Module: Failed to translate expression. + + +LabVIEW Simulation Module: Invalid SimX node reference. + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/LabVIEW-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/LabVIEW-errors.txt new file mode 100755 index 0000000..124588d --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/LabVIEW-errors.txt @@ -0,0 +1,3202 @@ + + + + + + + +LabVIEW: (Hex 0x80004001) Not implemented. + + +LabVIEW: (Hex 0x80004004) Operation aborted. + + +LabVIEW: (Hex 0x80004005) Unspecified error. + + +LabVIEW: (Hex 0x80070057) One or more arguments are invalid. + + +LabVIEW: (Hex 0x8ABC0008) Cannot resolve name to a network address. + + +LabVIEW: (Hex 0x8ABC0009) Network operation timed out. + + +LabVIEW: (Hex 0x8ABC0011) Could not resolve service to a port address. + + +LabVIEW: (Hex 0x8ABC0012) Timed out while trying to connect to peer. + + +LabVIEW: (Hex 0x8ABC0022) Computer name is not present in the URL. + + +LabVIEW: (Hex 0x8ABC0023) Computer name starts with a non-alphabetic character. + + +LabVIEW: (Hex 0x8ABC0024) Computer name contains an invalid character. + + +LabVIEW: (Hex 0x8ABC0025) Process name is not present in the URL. + + +LabVIEW: (Hex 0x8ABC0026) Process name contains an invalid character. + + +LabVIEW: (Hex 0x8ABC0027) Point or tag name is not present in the URL. + + +LabVIEW: (Hex 0x8ABC0028) Point or tag name contains an invalid character. + + +LabVIEW: (Hex 0x8ABC0030) Empty component in point or tag name. + + +LabVIEW: (Hex 0x8ABC0034) Thread initiation failed. + + +LabVIEW: (Hex 0x8ABC0100) URL does not start with two slashes. + + +LabVIEW: (Hex 0x8ABC0101) URL starts with more than two slashes. + + +LabVIEW: (Hex 0x8ABC0102) URL contains two consecutive delimiters. + + +LabVIEW: (Hex 0x8ABC0104) Unbalanced quotation marks in URL. + + +LabVIEW: (Hex 0x8ABCB200) Invalid refnum. + + +LabVIEW: (Hex 0x8ABCB201) Invalid property code. + + +LabVIEW: (Hex 0x8ABCB202) Invalid privilege ID. + + +LabVIEW: (Hex 0x8ABCB203) Invalid access type. + + +LabVIEW: (Hex 0x8ABCB204) Invalid argument. + + +LabVIEW: (Hex 0x8ABCB205) Entry not found. + + +LabVIEW: (Hex 0x8BBB0000) The value from this shared variable might not be the most current value from the data source. + + +LabVIEW: (Hex 0x8BBB0001) Sensor failure + + +LabVIEW: (Hex 0x8BBB0002) General device error response. + + +LabVIEW: (Hex 0x8BBB0003) Server failure. + + +LabVIEW: (Hex 0x8BBB0004) General communications failure. + + +LabVIEW: (Hex 0x8BBB0005) The shared variable does not exist. + + +LabVIEW: (Hex 0x8BBB0006) The shared variable has no value. + + +LabVIEW: (Hex 0x8BBB0007) The shared variable is inactive. + + +LabVIEW: (Hex 0x8BBB0008) Sensor inaccurate + + +LabVIEW: (Hex 0x8BBB0009) Engineering unit limits exceeded. + + +LabVIEW: (Hex 0x8BBB000A) Unspecified error + + +LabVIEW: (Hex 0x8BBB000B) Math error + + +LabVIEW: (Hex 0x8BBB000C) Communications link failure + + +LabVIEW: (Hex 0x8BBB000D) NI-PSP has not connected to the server yet + + +LabVIEW: (Hex 0x8BBB000E) DNS lookup failed for the server. + + +LabVIEW: (Hex 0x8BBB000F) The server is not reachable. + + +LabVIEW: (Hex 0x8BBB0010) Service lookup failed for the server. + + +LabVIEW: (Hex 0x8BBB0011) The connection to the server was disconnected. + + +LabVIEW: (Hex 0x8BBB0012) The process was not found or is not responding. + + +LabVIEW: (Hex 0x8BBB0013) Failed to resolve URL for this shared variable. + + +LabVIEW: (Hex 0x8BBB0014) Read access is denied to the shared variable. + + +LabVIEW: (Hex 0x8BBB0015) Subscribe failed. + + +LabVIEW: (Hex 0x8BBB0016) Invalid URL for this shared variable. + + +LabVIEW: (Hex 0x8BBB0017) Invalid combination of feature packs + + +LabVIEW: (Hex 0x8BBB0018) Invalid float value. + + +LabVIEW: (Hex 0x8BBB0019) Invalid Boolean value. + + +LabVIEW: (Hex 0x8BBB001A) Value attribute not found. + + +LabVIEW: (Hex 0x8BBB001B) Invalid access type. + + +LabVIEW: (Hex 0x8BBB001C) Missing access type. + + +LabVIEW: (Hex 0x8BBB001D) Invalid URL syntax. + + +LabVIEW: (Hex 0x8BBB001E) Shared variable is bound but the path or URL is not specified. + + +LabVIEW: (Hex 0x8BBB001F) A path and URL are both specified. + + +LabVIEW: (Hex 0x8BBB0020) Invalid value for the Bind to Source option. + + +LabVIEW: (Hex 0x8BBB0021) A value is missing for the Bind to Source option. + + +LabVIEW: (Hex 0x8BBB0022) Invalid value for Single Writer option. + + +LabVIEW: (Hex 0x8BBB0023) You must select a name for the shared variable. + + +LabVIEW: (Hex 0x8BBB0024) Two var type feature packs are selected + + +LabVIEW: (Hex 0x8BBB0025) No var type feature pack is selected + + +LabVIEW: (Hex 0x8BBB0026) Var type feature packs must be required + + +LabVIEW: Buffer size must be greater than 1. + + +LabVIEW: Array length must be greater than or equal to 2. + + +LabVIEW: Data points in waveform must be greater than or equal to 1. + + +LabVIEW: Global variables can only be accessed from the local machine. + + +LabVIEW: You cannot use a Variable Node of this type on this target. + + +LabVIEW: The variable configuration is invalid. Edit the variable properties to correct the configuration. + + +LabVIEW: Variable has undefined data type. + + +LabVIEW: Variable has invalid data type. + + +LabVIEW: (Hex 0x8BBB002F) The Raw Full Scale value must be greater than the Raw Zero Scale value. + + +LabVIEW: (Hex 0x8BBB0030) The Raw Scale and/or Engineering Scale is invalid. + + +LabVIEW: (Hex 0x8BBB0031) The Engineering Full Scale value should not be equal to Engineering Zero Scale value. + + +LabVIEW: (Hex 0x8BBB0032) Scaling type attribute not specified. + + +LabVIEW: (Hex 0x8BBB0033) Scaling ranges not fully specified. + + +LabVIEW: BuffSize, ElemSize, and PointsPerWaveform must be greater than or equal to 1. + + +LabVIEW: This piece of configuration does not exist for this type of variable. + + +LabVIEW: (Hex 0xBFFC0001) Parameter 1 is out of range. + + +LabVIEW: (Hex 0xBFFC0002) Parameter 2 is out of range. + + +LabVIEW: (Hex 0xBFFC0003) Parameter 3 is out of range. + + +LabVIEW: (Hex 0xBFFC0004) Parameter 4 is out of range. + + +LabVIEW: (Hex 0xBFFC0005) Parameter 5 is out of range. + + +LabVIEW: (Hex 0xBFFC0006) Parameter 6 is out of range. + + +LabVIEW: (Hex 0xBFFC0007) Parameter 7 is out of range. + + +LabVIEW: (Hex 0xBFFC0008) Parameter 8 is out of range. + + +LabVIEW: (Hex 0xBFFC0010) Error interpreting instrument response + + +LabVIEW: (Hex 0xBFFC0011) Identification query failed. + + +LabVIEW: (Hex 0xBFFC0012) Error interpreting the instrument's response. + + +LabVIEW: Instrument self-test failure. + + +LabVIEW: Instrument error query failure. + + +LabVIEW: just an example + + +LabVIEW: An unidentified error occurred in the parser. + + +LabVIEW: The parser aborted recognition of a token. + + +LabVIEW: A recognition error occurred while generating a stream of tokens. + + +LabVIEW: An I/O error occurred while generating a stream of tokens. + + +LabVIEW: An unidentified error occurred while generating a stream of tokens. + + +LabVIEW: A semantic error occurred while parsing. + + +LabVIEW: LabVIEW found an unexpected character while parsing. + + +LabVIEW: LabVIEW found an unexpected token while parsing. + + +LabVIEW: LabVIEW found a mismatched token while parsing. + + +LabVIEW: LabVIEW found a mismatched character while parsing. + + +LabVIEW: An unidentified error occurred while attempting to recognize a character or token. + + +LabVIEW: An I/O error occurred while generating a stream of characters. + + +LabVIEW: An unidentified error occurred while generating a stream of characters. + + +LabVIEW: A parser error occurred. + + +LabVIEW: You do not have the appropriate license to access this item. Contact National Instruments for more information. + + +LabVIEW: The output is complex. + + +LabVIEW: MathScript strings only supports ASCII characters in the range of 32-126. + + +LabVIEW: Only scalar elements and strings are supported in a switch statement. + + +LabVIEW: The given function name does not correspond to a known function. + + +LabVIEW: The current MathScript could not be executed. Please contact National Instruments with the script. + + +LabVIEW: LabVIEW evaluated the integrand more than 20,000 times. + + +LabVIEW: The integration interval is approaching machine epsilon. + + +LabVIEW: Two consecutive iterations of this function produce the same result. + + +LabVIEW: This function exceeded the maximum number of iterations without converging. + + +LabVIEW: A divide-by-zero error occurred. + + +LabVIEW: You specified an invalid time. + + +LabVIEW: You specified an invalid format specifier. + + +LabVIEW: The sizes of the input matrices are incompatible. + + +LabVIEW: Some eigenvalues of the input matrix are ill-conditioned. + + +LabVIEW: The precondition matrices are ill-conditioned. + + +LabVIEW: The upper triangular part of the input matrix is not a valid Cholesky factor. + + +LabVIEW: The downdated matrix is not positive definite. + + +LabVIEW: The input matrix is not positive definite. + + +LabVIEW: You specified an empty matrix. + + +LabVIEW: The degree of the polynomial is greater than the number of data points. + + +LabVIEW: The lengths of the two input vectors are not compatible. + + +LabVIEW: The length of the input vector must be greater than 2. + + +LabVIEW: The length of the input vector must be greater than 2*l. + + +LabVIEW: The elements of the input vector must be in increasing order. + + +LabVIEW: The elements of the input vector must be distinct. + + +LabVIEW: The values of the input vectors are not compatible. + + +LabVIEW: All elements of the input vector must be positive. + + +LabVIEW: All real elements of the input vector must be greater than or equal to 0. + + +LabVIEW: All input elements must be in the interval [-1, 1]. + + +LabVIEW: You specified an empty vector. + + +LabVIEW: This function is not defined for vector data types. + + +LabVIEW: The input parameter must be a vector. + + +LabVIEW: The input scalar must be greater than 0 and not equal to 2. + + +LabVIEW: The input scalar must be in the interval [0, 1]. + + +LabVIEW: The input scalar cannot be 0. + + +LabVIEW: The input scalar must be positive. + + +LabVIEW: The input scalar must be greater than or equal to 0. + + +LabVIEW: You specified input parameters for a function that takes no inputs. + + +LabVIEW: You specified an invalid number of output parameters for this function. + + +LabVIEW: You specified an invalid number of input parameters for this function. + + +LabVIEW: You cannot specify a step size of zero for a range. + + +LabVIEW: The input parameters must be real, positive numbers. + + +LabVIEW: You must call the tic function before calling the toc function. + + +LabVIEW: You must use a square matrix. + + +LabVIEW: The input parameters are not in the required format. + + +LabVIEW: The base of the number conversion must be an integer between 2 and 36. + + +LabVIEW: You must operate on the first or second dimension. + + +LabVIEW: The matrix sizes are not valid. + + +LabVIEW: The data types you specified are incompatible. This error can occur when you build a matrix with both complex and character elements. + + +LabVIEW: All rows of a matrix must have the same number of columns. + + +LabVIEW: You cannot convert a complex number to a character. This error can occur when you replace a character matrix element with a complex element or when you explicitly convert a complex number to a character. + + +LabVIEW: You cannot convert a Boolean to a character. This error can occur when you replace a character matrix element with a Boolean or when you explicitly convert a Boolean to a character. + + +LabVIEW: You cannot convert a uint64 number to a Boolean. This error can occur when you replace a Boolean matrix element with a uint64 element or when you explicitly convert a uint64 number to a Boolean. + + +LabVIEW: You cannot convert an int64 number to a Boolean. This error can occur when you replace a Boolean matrix element with an int64 element or when you explicitly convert an int64 number to a Boolean. + + +LabVIEW: You cannot convert a character to a Boolean. This error can occur when you replace a Boolean matrix element with a character or when you explicitly convert a character to a Boolean. + + +LabVIEW: You cannot convert a complex number to a Boolean. This error can occur when you replace a Boolean matrix element with a complex element or when you explicitly convert a complex number to a Boolean. + + +LabVIEW: The number of rows and columns that the indexes specify must equal the number of rows and columns of values you want to set. + + +LabVIEW: You cannot use an empty matrix to delete a single element in a 2D matrix. + + +LabVIEW: The indexes are out of bounds for the variable you specified. + + +LabVIEW: The given name does not correspond to a known function, variable, or symbol. + + +LabVIEW: You cannot resize a 2D matrix by indexing the matrix with a linear index that is out of the bounds of the matrix. + + +LabVIEW: You cannot replace elements of a matrix with non-matrix data types. + + +LabVIEW: The number of indexes must match the number of values you want to assign to a matrix. + + +LabVIEW: The variable is not a matrix data type. This error can occur when you attempt to index a non-matrix data type. + + +LabVIEW: The indexes for a matrix indexing operation must be real, positive integers. + + +LabVIEW: An internal error occurred while processing this MathScript. Contact National Instruments with the MathScript you used. + + +LabVIEW: LabVIEW does not understand the optional parameter you passed to this function. Verify that you spelled the parameter correctly and that the option is valid for this function. + + +LabVIEW: The data type of the input parameters is not valid for this operation. + + +LabVIEW: LabVIEW does not understand the parameters you passed to this function. + + +LabVIEW: This function does not operate on matrices of 3 or more dimensions. + + +LabVIEW: This function does not operate on function handles. + + +LabVIEW: This operation requires at least one parameter to be a scalar. + + +LabVIEW: The input parameters for this function must be real. + + +LabVIEW: The bit you want to set is outside the range of the current floating-point representation. + + +LabVIEW: The bit you want to get is outside the range of the current floating-point representation. + + +LabVIEW: If you perform a bitwise complement and treat the result as an N-bit number, the original number cannot be greater than 2^N. + + +LabVIEW: The input parameters must be nonnegative integers less than bitmax. + + +LabVIEW: Elements of the input matrices must be nonnegative integers of the same data type. + + +LabVIEW: The data types of the input matrices must be the same when you perform a bitwise operation. + + +LabVIEW: The sizes of the input matrices are incompatible. Verify that the matrices have the same size or that one is a scalar. + + +LabVIEW: The inputs to this function must be scalar. + + +LabVIEW: The operator you want to use is not defined. If the operator is correct, contact National Instruments. + + +LabVIEW: This function is not defined to operate on complex data. This error can occur when you perform a logical operation with invalid data types. + + +LabVIEW: This function is not defined to operate on Boolean, character, or single-precision data. This error can occur when you perform a bitwise operation with invalid data types. + + +LabVIEW: This function is defined to operate only on characters. + + +LabVIEW: This function is not defined for sized integer matrix data types (e.g. int8, uint32, etc.). + + +LabVIEW: This function is not defined for non-matrix data types. + + +LabVIEW: This function is not defined for the number of parameters you supplied. + + +LabVIEW: The supplied parameter is incompatible with the data type that this function requires. For example, you cannot add two int8 numbers. + + +LabVIEW: A problem occurred in a subVI call. + + +LabVIEW: Configured network speed does not match the actual one. This can happen if network adapter is slower than the specified network speed or the network speed has been downgraded by another adapter, hub, or switch. + + +LabVIEW: "Data Received" timing source can not be used by the node owning the associated variable or "Data Sent" timing source can only be used on the node owning the associated variable + + +LabVIEW: Requested error can not be ignored because a full or partial shutdown of the node and/or network has been initiated. + + +LabVIEW: A valid packet that does not follow to NI's deterministic protocol has been detected on the network. The node/network will be shut down. + + +LabVIEW: An already deployed configuration for one or more network nodes does not match this node's configuration. + + +LabVIEW: Network transmission violated requested timing. See documentation for more information about what might have caused the error and how can it be avoided + + +LabVIEW: Resource allocation/creation/configuration failed because the existing resource has already been configured with different parameters. This error is generated if a particular resource such as a channel is being recreated with, for example, a different buffer size. + + +LabVIEW: Read failed after three retries due to new data being placed into the buffer + + +LabVIEW: Clock synchronization algorithm failed because enough cycle start packets have been missed - no more write network transactions will be allowed until the deterministic communication engine is restarted. + + + +LabVIEW: Invalid reference + + +LabVIEW: Deterministic communciation engine found no devices with specified MAC address + + +LabVIEW: Requested device can not be instantiated in a specified mode because of one of the following reasons: there is already device initialized in determinsistic mode + + +LabVIEW: Specified subchannel is out of range. Please see documentation about supported range for channel sub-channels. + + +LabVIEW: One of the following illegal operations has been attempted: allocation of a write terminal on a channel owned by another node; allocation of a shared memory variable on a non shared memory channel; creation of a read or write terminal on a shared memory channel + + +LabVIEW: An item with specified index has already been configured + + +LabVIEW: Item offset is out of range specified during channel initialization time + + +LabVIEW: Message being written to the deterministic communication engine exceeds maximum size configured during channel or terminal creation time or the buffer allocated for reading is smaller than the message size + + +LabVIEW: Deterministic communication engine timing source with the same name already exists + + +LabVIEW: Deterministic communication engine files have not been properly installed + + +LabVIEW: Deterministic communication engine run out of allocated resources + + +LabVIEW: The deterministic communication engine failed to initialize hardware. + + +LabVIEW: Deterministic communciation engine failed to allocate enough memory while performing requested operation + + +LabVIEW: There must be a signal wired to each input signal terminal. + + +LabVIEW: (Hex 0xFFFFED28) Clipped Floating-point data to fit the range [-1.0, 1.0]. + + +LabVIEW: (Hex 0xFFFFED2C) Potential glitch during write. + + +LabVIEW: An invalid UTF-8 string was used in a regular expression or input string. + + +LabVIEW: Two named groups have the same name. + + +LabVIEW: There is a syntax error after (?P. + + +LabVIEW: An unrecognized character was encounted after (?P. + + +LabVIEW: A recursive call could loop indefinitely. + + +LabVIEW: Closing ) for (?C expected. + + +LabVIEW: Number after (?C is > 255. + + +LabVIEW: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X escape sequences. + + +LabVIEW: The \C expression is not allowed in a lookbehind assertion. + + +LabVIEW: Invalid condition (?(0). + + +LabVIEW: The character value in the \x{...} sequence is too large. + + +LabVIEW: UTF-8 is not supported. + + +LabVIEW: POSIX collating elements are not supported. + + +LabVIEW: Unknown POSIX class name. + + +LabVIEW: A (?R or (?digits expression must be followed by ). + + +LabVIEW: An assertion is expected after (?(. + + +LabVIEW: A conditional group contains more than two branches. + + +LabVIEW: There is a malformed number after (?(. + + +LabVIEW: A lookbehind assertion is not a fixed length. + + +LabVIEW: There is an unrecognized character after (?<. + + +LabVIEW: Internal error: code overflow. + + +LabVIEW: There is an unmatched parenthesis in a regular expression. + + +LabVIEW: Failed to get the memory for regular expression matching. + + +LabVIEW: The regular expression is too large. + + +LabVIEW: Parentheses are nested too deeply. + + +LabVIEW: A ) is missing after a comment. + + +LabVIEW: Internal Error: Unknown option bit(s) set. + + +LabVIEW: Internal Error: Erroffset passed as NULL. + + +LabVIEW: There is a reference to non-existent subpattern. + + +LabVIEW: A ) is missing. + + +LabVIEW: POSIX named classes are supported only within a class. + + +LabVIEW: There is an unrecognized character after (?. + + +LabVIEW: Internal error: unexpected repeat. + + +LabVIEW: There is nothing to repeat. + + +LabVIEW: A range is out of order in a character class. + + +LabVIEW: A character class contains an invalid escape sequence. + + +LabVIEW: A character class is missing a ']' terminator. + + +LabVIEW: A number in the {} quantifier is too large. + + +LabVIEW: Numbers out of order in {} quantifier. + + +LabVIEW: An unrecognized character follows a '\'. + + +LabVIEW: A regular expression must not end with '\c'. + + +LabVIEW: A regular expression must not end with '\'. + + +LabVIEW: An unknown error occurred during the regular expression match. + + +LabVIEW: LabVIEW could not access the source control provider. The LabVIEW source control configuration settings are not valid for this session or a timeout occurred. Select Tools>>Source Control>>Configure Source Control to reconfigure source control. + + +LabVIEW: The specified file is not a valid LabVIEW file type. Enter a path to an existing LabVIEW file, such as a VI or control. + + +LabVIEW: An error occurred while comparing the specified file. The local file is not the latest version in source control. + + +LabVIEW: The value of an input parameter is out of range. + + +LabVIEW: The source control configuration data is invalid, corrupted, or missing. Verify that the data is valid for the source control provider you selected during configuration. + + +LabVIEW: The number of files input does not match the version information input. Make sure the two inputs contain the same number of elements. + + +LabVIEW: The input file type is not compatible with the file retrieval method. + + +LabVIEW: Invalid source control reference. + + +LabVIEW: No valid file paths were specified. You must enter at least one valid file path. + + +LabVIEW: An error occurred while uninitializing the source control provider. + + +LabVIEW: An error occurred while loading the source control DLL. The source control provider might have been moved or removed without a registry update. You might need to reinstall the source control provider. + + +LabVIEW: An internal error occurred during the source control operation. + + +LabVIEW: An error occurred while accessing the source control provider. The specified provider was not found. + + +LabVIEW: You cannot perform source control operations until you configure source control in LabVIEW. Select Tools>>Source Control>>Configure Source Control to configure source control. + + +LabVIEW: You cannot perform the specified source control operation on files marked as Open for Add or Open for Delete. Submit these files to the source control provider before you attempt the operation. + + +LabVIEW: The changelist does not include a valid description. Verify that the description is not empty and does not contain the default text. + + +LabVIEW: Unable to locate or run the administration tool from the source control provider. + + +LabVIEW: All files in a single submit operation must be the latest version, checked out to the user, not locked by another user, and under source control. + + +LabVIEW: The specified files are not in the same changelist. All files in a single submit operation must be in the same changelist. + + +LabVIEW: An error occurred during the specified source control operation. + + +LabVIEW: A connection with the source control provider already exists. Disconnect from the current source control provider before you open a new connection. + + +LabVIEW: The specified source control provider is not compatible with LabVIEW. The source control provider does not support required LabVIEW functionality. + + +LabVIEW: The length of an input parameter exceeds the maximum allowed value. + + +LabVIEW: The specified source control operation cannot run because the source control provider is not initialized. + + +LabVIEW: The specified option is invalid. + + +LabVIEW: A failure occurred in the connection with the source control provider. + + +LabVIEW: Unable to locate the local copy of the specified file. + + +LabVIEW: An error occurred while opening a source control project or accessing a file. An input value uses invalid file syntax. + + +LabVIEW: The user is not allowed to perform this operation. + + +LabVIEW: An error occurred while performing the specified operation. No source control project is open. + + +LabVIEW: An error occurred while opening a source control project or accessing a file. The specified path is invalid. + + +LabVIEW: An error occurred while opening the specified source control project. An input value uses invalid syntax for the source control project syntax. + + +LabVIEW: The specified source control project is already open. + + +LabVIEW: An error occurred while logging into the source code provider. The specified user login is invalid. Verify the login information you entered. + + +LabVIEW: An error occurred within the source control provider program, such as shell failure. + + +LabVIEW: An error occurred during file check-in. The specified file was automatically merged but was not checked in because you must resolve a merge conflict manually. + + +LabVIEW: An error occurred during file check-in. The specified file was automatically merged but was not checked in, pending user verification. + + +LabVIEW: An error occurred while adding a file to source control. The source control provider does not support the file type (binary or text). + + +LabVIEW: The source control provider did not perform the specified operation. + + +LabVIEW: The source control provider returned a non-specific error. The specified operation was not performed. + + +LabVIEW: The source control provider does not support the specified operation. + + +LabVIEW: The version of the file you specified does not exist or was not specified correctly. Specify a valid version or date and time. + + +LabVIEW: An error occurred while retrieving or removing the specified file. The file is currently checked out, so the provider is unable to retrieve or remove it. + + +LabVIEW: The specified file is not under source control. + + +LabVIEW: An error occurred while adding a file to source control. The specified file is in source control already. + + +LabVIEW: File check-in did not occur because of a conflict error. Another user has checked in the file. + + +LabVIEW: An error occurred while accessing source control. Check for network or contention problems. + + +LabVIEW: An error occurred while checking out a file. The specified file is exclusively checked out by another user. + + +LabVIEW: An error occurred while checking out a file. The specified file is locked. + + +LabVIEW: An error occurred while checking out a file. The specified file already is checked out. + + +LabVIEW: An error occurred while checking in or undoing the check out of a file. The specified file is not checked out to the current user. + + +LabVIEW: An error occurred while opening the specified source control project. The source control provider could not create the source control project. + + +LabVIEW: An error occurred while opening the specified source control project. The source control provider does not recognize the project name. Verify that the project name and location are correct. + + +LabVIEW: An error occurred during source control provider initialization. + + +LabVIEW: DIAdem could not be started. You must have DIAdem 9.1 Service Pack 2 or later installed to use the NI DIAdem Report Express VI. + + +LabVIEW: Cannot append data to the existing file because the value of the X Value Columns option of the Write to Measurement File Express VI changed. + + +LabVIEW: The Write to Measurement File Express VI cannot append new data to the file because the time information of the signals stored in the file does not match the signals you are trying to append. + + +LabVIEW: The Write to Measurement File Express VI cannot append new data to the file because the signals stored in the file don't match the signals you are trying to append. + + +LabVIEW: The Write to Measurement File Express VI cannot append new data to frequency domain waveforms. + + +LabVIEW: After deleting data from a file, you must close the file and reopen it before you can perform a read operation. + + +LabVIEW: Storage VIs version conflict. + + +LabVIEW: The string you wired to this VI contains binary characters that are not valid entries for string values in a .tdm file. To store binary data, use data channels with a data type of 8-bit unsigned integer. + + +LabVIEW: This property is not part of the Storage VI data structure. + + +LabVIEW: This object type is not part of the Storage VI data structure. + + +LabVIEW: LabVIEW could not write the file back to disk. + + +LabVIEW: LabVIEW cannot convert the object ID into a valid refnum. An object with this ID does not exist in the data storage file. + + +LabVIEW: LabVIEW failed to allocate memory from the operating system of your computer. + + +LabVIEW: An input parameter to this VI is invalid. + + +LabVIEW: LabVIEW could not load the data channel you specified from the data storage file. The channel either is empty or the properties that describe the channel, such as length or data type, are incomplete. + + +LabVIEW: The software installed on this computer does not support the file format you requested. The Storage VIs access files through plug-in libraries LabVIEW and DIAdem install. Visit ni.com to download the library you need. + + +LabVIEW: This property does not exist. + + +LabVIEW: The data type of a property or channel could not automatically be coerced when writing to or reading from a data storage file. + + +LabVIEW: Data storage is write-protected. + + +LabVIEW: LabVIEW cannot load the USI components the Storage VIs require. These components are installed by LabVIEW and DIAdem. Visit ni.com to download the components you need. You may need to reinstall LabVIEW or DIAdem. + + +LabVIEW: The data storage file is already open. + + +LabVIEW: LabVIEW cannot open the data storage file. + + +LabVIEW: There is an error in the query expression. + + +LabVIEW: LabVIEW cannot find the object type. + + +LabVIEW: LabVIEW cannot write to a read-only data storage file. + + +LabVIEW: LabVIEW does not support the data type of this property. + + +LabVIEW: The object refnum is invalid. The node that returned this refnum might have encountered an error and did not return a valid refnum. The storage this refnum refers to might have closed before the call executed. + + +LabVIEW: The property data type does not match. + + +LabVIEW: This property does not exist. + + +LabVIEW: Storage VIs internal error. + + +LabVIEW: A DLL required by this variable is missing or is the wrong version. + + +LabVIEW: A value has never been written to this variable. + + +LabVIEW: The variable write buffer was full. + + +LabVIEW: The variable read buffer was empty. + + +LabVIEW: This version of LabVIEW does not support waveforms in an RT FIFO. + + +LabVIEW: Invalid waveform passed to the RT FIFO. + + +LabVIEW: RT FIFO does not exist. + + +LabVIEW: RT FIFO must contain at least 2 elements. + + +LabVIEW: (Hex 0xFFFFF764) Type mismatch. Named RT FIFO type does not match that of existing RT FIFO with same name. + + +LabVIEW: (Hex 0xFFFFF765) Cannot match an empty name. + + +LabVIEW: (Hex 0xFFFFF766) The specified name does not exist. + + +LabVIEW: (Hex 0xFFFFF767) The specified name already exists and is of a different size or type. + + +LabVIEW: (Hex 0xFFFFF768) Unknown internal error. + + +LabVIEW: Waveform data type file datalog type conflict. Refer to the National Instruments Web site at ni.com/info and enter the info code exd9zq for more information about migrating waveform data from LabVIEW 6.x to LabVIEW 7.x. + + +LabVIEW: The t0 does not align with the end of the previous signal. + + +LabVIEW: Specified start position or signal index is out of range. + + +LabVIEW: Full Scale Range cannot be less than or equal to zero. + + +LabVIEW: An invalid character was present in the spreadsheet string. Use only 0, 1, L, H, X, Z, V, or T. + + +LabVIEW: Too many signals to convert into the specified data type. + + +LabVIEW: Specified start position or duration is out of range. + + +LabVIEW: Both waveforms must contain the same number of signals. + + +LabVIEW: The number of samples to compare exceeds the number of samples after the start sample. + + +LabVIEW: Highest resolution supported for conversion is 52. + + +LabVIEW: Values other than 0, 1, L, H are present in the digital data. + + +LabVIEW: Appending data with mismatched numbers of digital samples or signals. + + +LabVIEW: Signal value input is outside the range of the digital data. + + +LabVIEW: Start index out of range + + +LabVIEW: Start index, value, or tolerance is NaN + + +LabVIEW: (Hex 0xFFFFF8F5) Waveform x-axis value requested is out of range. + + +LabVIEW: (Hex 0xFFFFF8F6) Waveforms have different dt values. + + +LabVIEW: (Hex 0xFFFFF8F7) Duration input is not an integer multiple of dt. Value was coerced to nearest integer multiple of dt. + + +LabVIEW: (Hex 0xFFFFF8F8) Start time input is not an integer multiple of dt. Value was coerced to nearest integer multiple of dt. + + +LabVIEW: Index is out of range in a put operation. + + +LabVIEW: The contents of the reply you are accessing have not arrived yet. + + +LabVIEW: No handler in the dispatch tables fits the parameters to AEGetEventHandler or AEGetCoercionHandler. + + +LabVIEW: Unknown Apple Event address type. + + +LabVIEW: Handler did not get all required parameters. + + +LabVIEW: Wrong keyword for a special function. + + +LabVIEW: No user interaction allowed. + + +LabVIEW: Apple Event timed out. + + +LabVIEW: User canceled out of wait loop for reply or receipt. + + +LabVIEW: Invalid sending mode was passed. + + +LabVIEW: AEResetTimer was passed an invalid reply parameter. + + +LabVIEW: AEResetTimer was passed an invalid reply parameter. + + +LabVIEW: The event is not an Apple Event. + + +LabVIEW: Need a newer version of Apple Event Manager. + + +LabVIEW: Operation involving a list item failed. + + +LabVIEW: Not a valid descriptor record. + + +LabVIEW: Wrong descriptor type. + + +LabVIEW: Data in an Apple Event could not be read. + + +LabVIEW: Descriptor record was not found. + + +LabVIEW: Data could not be coerced to the requested descriptor type. + + +LabVIEW: Instrument-specific error. + + +LabVIEW: Error interpreting instrument response. + + +LabVIEW: Instrument identification query failed. + + +LabVIEW: Parameter out of range. + + +LabVIEW: Destination port requires authentication. + + +LabVIEW: Location name is invalid. + + +LabVIEW: Service method is other than ppcServiceRealTime. + + +LabVIEW: Invalid user reference number. + + +LabVIEW: User's password is wrong. + + +LabVIEW: PPCStart failed because destination did not have an inform pending. + + +LabVIEW: An error has occurred in the network. + + +LabVIEW: Unable to create a new userRefNum. + + +LabVIEW: The default userRefNum does not yet exist. + + +LabVIEW: User has not specified owner name in Sharing Setup Control Panel. + + +LabVIEW: PPCPortRec is invalid. + + +LabVIEW: The session has closed. + + +LabVIEW: The port was closed. + + +LabVIEW: Unable to contact destination application. + + +LabVIEW: A system resource is missing. + + +LabVIEW: User has not named his Macintosh in the Network Setup Control Panel. + + +LabVIEW: Destination rejected the session request. + + +LabVIEW: User name unknown on destination machine. + + +LabVIEW: Another port is already open with this name (perhaps in another application). + + +LabVIEW: Bad parameter or invalid state for this operation. + + +LabVIEW: Invalid session reference number. + + +LabVIEW: PPC Toolbox is unable to create a session. + + +LabVIEW: Port does not exist at destination. + + +LabVIEW: Network activity is currently disabled. + + +LabVIEW: The system is unable to allocate memory. This is a critical error, and you should restart. + + +LabVIEW: Invalid port name. Unable to open port or bad portRefNum. + + +LabVIEW: Invalid or inappropriate locationKindSelector in locationName. + + +LabVIEW: PPC Toolbox has not been initialized. + + +LabVIEW: Cannot load scheduler library on the target. + + +LabVIEW: The timed structure feature or type is not supported on the current platform for the following timing source. + + +LabVIEW: The following timed structures timed out while waiting for the synchronization group to synchronize all timed structures in the group. + + +LabVIEW: The following timed structure has been initialized with illegal parameters. + + +LabVIEW: An illegal mode has been specified for the following given Timed Loop. + + +LabVIEW: An illegal period, deadline, offset, or start has been specified for the following timed structure. + + +LabVIEW: Timing Source error or attempted to execute another iteration of a Timed Loop that was already aborted due to an error of the following timing source. + + +LabVIEW: Timed structure aborted or attempted to execute another iteration of the following aborted Timed Loop. + + +LabVIEW: Cannot add timing source to the following active timing source hierarchy. + + +LabVIEW: Cannot add timed structure to the active timed structure synchronization group. + + +LabVIEW: The following timing source can be assigned to only one timing source hierarchy at a time. + + +LabVIEW: The following timed structure can only be assigned to one timed structure synchronization group at a time. + + +LabVIEW: The given name is already being used by another timing source hierarchy: + + +LabVIEW: The given name is already being used by another timed structure synchronization group: + + +LabVIEW: The given name is already being used by the following timing source. + + +LabVIEW: The given name is already being used by the following timed structure. + + +LabVIEW: LabVIEW: The following timing source hierarchy does not exist possibly because the timing source hierarchy has never been created, has been cleared, or an illegal action was attempted. + + +LabVIEW: LabVIEW: The following synchronization group does not exist possibly because the synchronization group has never been created, has been cleared, or an illegal action was attempted. + + +LabVIEW: LabVIEW: The following timing source does not exist possibly because the timing source was never created, has been cleared, or an illegal action was attempted. + + +LabVIEW: The timed structure does not exist, possibly because the timed structure has not been created, the timed structure has been cleared, or an illegal operation was attempted. + + +LabVIEW: Creating a new timing source hierarchy exceeds the maximum allowed number of simultaneously active timing source hierarchies. + + +LabVIEW: Creating another timed structure synchronization group exceeds the maximum allowed number of simultaneously active synchronization groups. + + +LabVIEW: Creating another timing source exceeds the maximum allowed number of simultaneously active timing sources. + + +LabVIEW: Creating another timed structure exceeds the maximum allowed number of simultaneously active timed structures. + + +LabVIEW: The TEDS bitstream is invalid or corrupt. + + +LabVIEW: The specified index is outside the bounds of the TEDS data array. + + +LabVIEW: The specified value is outside of the acceptable range for this property. + + +LabVIEW: The Basic TEDS was not found in the TEDS data. + + +LabVIEW: The specified selectcase or structarray was not found. + + +LabVIEW: The specified VTEDS file was written with an incompatible version of the TEDS library. + + +LabVIEW: The EEPROM is too small for data. + + +LabVIEW: EEPROM Write Failure + + +LabVIEW: Bad EEPROM ID + + +LabVIEW: No EEPROM is detected. + + +LabVIEW: This property cannot be edited because it is a constant in the template for this sensor. + + +LabVIEW: The enumeration for this property does not correspond to the data type specified by the template. + + +LabVIEW: This TEDS sensor requires a manufacturer defined template. + + +LabVIEW: The specified property is a floating-point data type according to the template. Casting this property to an unsigned integer will result in a loss of precision. + + +LabVIEW: The specified property is specified by the TEDS template as a string data type and cannot be converted to a numeric. + + +LabVIEW: The TEDS user data does not contain 7-bit ASCII code. + + +LabVIEW: The requested property cannot be found in the current TEDS data. + + +LabVIEW: The template to decode the remainder of the TEDS bitstream cannot be found in the specified template directory. + + +LabVIEW: The header selector in the legacy Basic TEDS is outside the acceptable range. + + +LabVIEW: The TEDS data checksum is invalid. + + +LabVIEW: This VI does not support the data type for this property. + + +LabVIEW: The number of bits required for the requested action is not divisible by five. + + +LabVIEW: The number of bits required is not divisible by seven. + + +LabVIEW: Networked machine was not found. + + +LabVIEW: Remote registry services not available or remote administration not enabled. + + +LabVIEW: Cannot create a stable subkey under a volatile parent key. + + +LabVIEW: Cannot create a symbolic link in a registry key that already has subkeys or values. + + +LabVIEW: System could not allocate the required space in a registry log. + + +LabVIEW: Illegal operation attempted on a registry key that has been marked for deletion. + + +LabVIEW: The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format. + + +LabVIEW: An I/O operation initiated by the registry failed irrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry. + + +LabVIEW: The registry is corrupted. The structure of one of the files that contains registry data is corrupted, the system's image of the file in memory is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted. + + +LabVIEW: One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful. + + +LabVIEW: The configuration registry key could not be written. + + +LabVIEW: The configuration registry key could not be read. + + +LabVIEW: The configuration registry key could not be opened. + + +LabVIEW: The configuration registry key is invalid. + + +LabVIEW: The configuration registry database is corrupt. + + +LabVIEW: Attempted to read beyond last key or value. + + +LabVIEW: Remote registry access denied. + + +LabVIEW: Specified key or value does not exist. + + +LabVIEW: Invalid registry refnum. + + +LabVIEW: Incorrect data type specified. + + +LabVIEW: Undetermined Windows registry error. + + +LabVIEW: An input parameter is invalid. + + +LabVIEW: Memory is full. + + +LabVIEW: Internal error. Wrong memory zone accessed. + + +LabVIEW: End of file encountered. + + +LabVIEW: File already open. + + +LabVIEW: Generic file I/O error. + + +LabVIEW: File not found. The file might have been moved or deleted, or the file path might be incorrectly formatted for the operating system. For example, use \ as path separators on Windows, : on Mac OS, and / on Linux. + + +LabVIEW: File permission error. + + +LabVIEW: Disk full. + + +LabVIEW: Duplicate path. + + +LabVIEW: Too many files open. + + +LabVIEW: Some system capacity necessary for operation is not enabled. + + +LabVIEW: Resource file not found. + + +LabVIEW: Cannot add resource. + + +LabVIEW: Resource not found. + + +LabVIEW: Image not found. + + +LabVIEW: Not enough memory to manipulate image. + + +LabVIEW: Pen does not exist. + + +LabVIEW: Configuration type invalid. + + +LabVIEW: Configuration token not found. + + +LabVIEW: Error occurred parsing configuration string. + + +LabVIEW: Configuration memory error. + + +LabVIEW: Bad external code format. + + +LabVIEW: External subroutine not supported. + + +LabVIEW: External code not present. + + +LabVIEW: Null window. + + +LabVIEW: Destroy window error. + + +LabVIEW: Null menu. + + +LabVIEW: Print aborted. + + +LabVIEW: Bad print record. + + +LabVIEW: Print driver error. + + +LabVIEW: Operating system error during print. + + +LabVIEW: Memory error during print. + + +LabVIEW: Print dialog error. + + +LabVIEW: Generic print error. + + +LabVIEW: Invalid device refnum. + + +LabVIEW: Device not found. + + +LabVIEW: Device parameter error. + + +LabVIEW: Device unit error. + + +LabVIEW: Cannot open device. + + +LabVIEW: Device call aborted. + + +LabVIEW: Generic error. + + +LabVIEW: Operation canceled by user. + + +LabVIEW: Object ID too low. + + +LabVIEW: Object ID too high. + + +LabVIEW: Object not in heap. + + +LabVIEW: Unknown heap. + + +LabVIEW: Unknown object (invalid DefProc). + + +LabVIEW: Unknown object (DefProc not in table). + + +LabVIEW: Message out of range. + + +LabVIEW: Null method. + + +LabVIEW: Unknown message. + + +LabVIEW: Manager call not supported. + + +LabVIEW: The network address is ill-formed. + + +LabVIEW: The network operation is in progress. + + +LabVIEW: The network operation exceeded the user-specified or system time limit. + + +LabVIEW: The network connection is busy. + + +LabVIEW: The network function is not supported by the system. + + +LabVIEW: The network is down, unreachable, or has been reset. + + +LabVIEW: The specified network address is currently in use. + + +LabVIEW: Serial port parity error. + + +LabVIEW: The system could not allocate the necessary memory. + + +LabVIEW: Serial port overrun error. + + +LabVIEW: The system caused the network connection to be aborted. + + +LabVIEW: Serial port receive buffer overflow. + + +LabVIEW: The network connection was refused by the server. + + +LabVIEW: Serial port framing error. + + +LabVIEW: The network connection is not yet established. + + +LabVIEW: Serial port timeout; bytes not received at serial port. + + +LabVIEW: The network connection is already established. + + +LabVIEW: The network connection was closed by the peer. + + +LabVIEW: Interapplication Manager initialization error. + + +LabVIEW: Bad occurrence. + + +LabVIEW: Handler does not know what occurrence to wait for. + + +LabVIEW: Occurrence queue overflow. + + +LabVIEW: File datalog type conflict. + + +LabVIEW: Semaphore not signaled. + + +LabVIEW: Interapplication Manager unrecognized type error. + + +LabVIEW: Memory or data structure corrupt. + + +LabVIEW: Failed to make temporary DLL. + + +LabVIEW: Old CIN version. + + +LabVIEW: Format specifier type mismatch. + + +LabVIEW: Unknown format specifier. + + +LabVIEW: Too few format specifiers. + + +LabVIEW: Too many format specifiers. + + +LabVIEW: Scan failed. + + +LabVIEW: Error converting to variant. + + +LabVIEW: Run-time menu error. + + +LabVIEW: Another user tampered with the VI password. + + +LabVIEW: Variant attribute not found. + + +LabVIEW: The data type of the variant is not compatible with the data type wired to the type input. + + +LabVIEW: (Hex 0x5C) The ActiveX event data was not available on the queue. + + +LabVIEW: (Hex 0x5D) ActiveX event information was not available. + + +LabVIEW: (Hex 0x5E) The occurrence associated with the ActiveX event was not found. + + +LabVIEW: The ActiveX event queue could not be created. + + +LabVIEW: ActiveX event information was not available in the type library. + + +LabVIEW: Null Refnum was passed in as input. + + +LabVIEW: Incorrect file type. Attempted to read from or write to a file of a type incompatible with the operation. Normally for user data files. + + +LabVIEW: Incorrect file version. Attempted to read from or write to a file of a version incompatible with the write/read function version. This file is normally a user data files. + + +LabVIEW: File contains erroneous data. Normally for user data files. + + +LabVIEW: IVI invalid downcast. + + +LabVIEW: No IVI class session opened. You must call the class driver Initialize VI before you can call a specific driver VI. This error can also occur if the IVI Logical Name control is set to the wrong IVI Class. + + +LabVIEW: Singlecast connections cannot send to multicast addresses. + + +LabVIEW: Multicast connections cannot send to singlecast addresses. + + +LabVIEW: Specified IP address is not in multicast address range. + + +LabVIEW: Cannot write to read-only multicast connection. + + +LabVIEW: Cannot read from write-only multicast connection. + + +LabVIEW: A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram was smaller than the datagram itself. + + +LabVIEW: Unflatten or byte stream read operation failed due to corrupt, unexpected, or truncated data. + + +LabVIEW: Directory path supplied where a file path is required. + + +LabVIEW: The supplied folder path does not exist. + + +LabVIEW: Illegal combination of Bluetooth discoverable and non-connectable modes. + + +LabVIEW: Error setting Bluetooth mode. + + +LabVIEW: Invalid GUID string. + + +LabVIEW: The resource you are attempting to open was created in a more recent version of LabVIEW and is incompatible with this version. + + +LabVIEW: You must supply a mode to change the offset of the Timed Loop. + + +LabVIEW: The VI is not in a state compatible with this operation. + + +LabVIEW: The VI front panel is not open. + + +LabVIEW: The VI cannot run because it has a front panel control in an error state. + + +LabVIEW: The VI is not executable. + + +LabVIEW: The VI is not in memory. + + +LabVIEW: VI execution has been disabled in the VI Properties dialog box. + + +LabVIEW: FPDCO on connector pane thinks it is constant. + + +LabVIEW: No IP record in summary. + + +LabVIEW: Cannot load connector pane. + + +LabVIEW: Variant tag out of range. + + +LabVIEW: No default or operate data. + + +LabVIEW: VI Creation failed. + + +LabVIEW: Cannot load block diagram. + + +LabVIEW: Cannot load front panel. + + +LabVIEW: Linker error. + + +LabVIEW: Printer is not responding. Check printer configuration. + + +LabVIEW: Cannot load History. + + +LabVIEW: VI has been modified on disk since it was last loaded or saved. + + +LabVIEW: Unspecified error occurred. + + +LabVIEW: Untitled SubVIs exist. + + +LabVIEW: This CIN can only be invoked from a registered wizard. + + +LabVIEW: Illegal Object Id passed to wizard CIN. + + +LabVIEW: Wizard Template not found. + + +LabVIEW: Wizard template does not have a diagram. + + +LabVIEW: Call Instrument aborted. + + +LabVIEW: Application Reference is invalid. + + +LabVIEW: VI Reference is invalid. + + +LabVIEW: For the requested operation, the reference cannot be reserved as requested, is in an improper reservation mode, or the execution state must be set to running or reserved. + + +LabVIEW: Attribute selector is invalid. + + +LabVIEW: VI Server property is read-only. + + +LabVIEW: VI Reference is already reserved for editing. + + +LabVIEW: VI Reference type does not match VI connector pane. + + +LabVIEW: VI Server access denied. + + +LabVIEW: Bad run-time menu file version. + + +LabVIEW: Bad run-time menu file. + + +LabVIEW: Operation is invalid for this type of VI. + + +LabVIEW: Method selector is invalid. + + +LabVIEW: Incompatible VI Server protocol version. + + +LabVIEW: Required parameter missing. + + +LabVIEW: VI was aborted. + + +LabVIEW: VI is password protected. + + +LabVIEW: Incorrect password. + + +LabVIEW: Attempted recursive call. + + +LabVIEW: The property or method is not supported in this version of LabVIEW. + + +LabVIEW: VI is locked. + + +LabVIEW: Null Refnum passed to Close Reference. + + +LabVIEW: LabVIEW cannot initialize the script server. + + +LabVIEW: LabVIEW failed to send variable to the script server. + + +LabVIEW: LabVIEW failed to get variable from the script server. + + +LabVIEW: LabVIEW failed to send script text to the script server. + + +LabVIEW: Error occurred while executing script. + + +LabVIEW: A LabVIEW file of that name already exists in memory. + + +LabVIEW: The LabVIEW filename is invalid. + + +LabVIEW: At run time, LabVIEW cannot find script support DLL. + + +LabVIEW: The specified object was not found. + + +LabVIEW: Object reference is invalid. + + +LabVIEW: Specified object is not scriptable in this version. + + +LabVIEW: Type mismatch: Object cannot be type casted to the specified type. + + +LabVIEW: Specified property not found. + + +LabVIEW: Unexpected file type. + + +LabVIEW: Object cannot contain (own) the specified object. + + +LabVIEW: Unable to create new object. + + +LabVIEW: Specified objects cannot be wired together. + + +LabVIEW: Specified terminal not found in the object. + + +LabVIEW: The specified VI may not be saved for previous because it resides in the vi.lib directory. + + +LabVIEW: The path to the VI to save is an empty or relative path. It must be an absolute path. + + +LabVIEW: Hardware open error. + + +LabVIEW: Hardware close error. + + +LabVIEW: Hardware transact error. + + +LabVIEW: Hardware DLL missing. + + +LabVIEW: Hardware no session error. + + +LabVIEW: Specified method not found. + + +LabVIEW: This property or method is not yet implemented. + + +LabVIEW: This property is writable only when the VI is in edit mode, or this method is available only when the VI is in edit mode. + + +LabVIEW: Cannot create a control/indicator for the specified terminal. + + +LabVIEW: Cannot create a constant for the specified terminal. + + +LabVIEW: VI is not debuggable. + + +LabVIEW: Invalid property value. + + +LabVIEW: Failed to load shared library %s on RT target device. + + +LabVIEW: RT target startup application missing. + + +LabVIEW: RT target startup application is corrupt. + + +LabVIEW: Exception caused by loading of library %s on RT target device. + + +LabVIEW: Operation not valid for strict type definition instance. + + +LabVIEW: Invalid connector pane pattern. + + +LabVIEW: Specified control or indicator cannot be hooked up to the connector pane. + + +LabVIEW: Invalid connector terminal. + + +LabVIEW: (Hex 0x43E) Wrong control type. + + +LabVIEW: (Hex 0x43F) There is no DataSocket information available for the object. + + +LabVIEW: Bad value for parameter. + + +LabVIEW: Error occurred while executing script. Error message from server: %s. + + +LabVIEW: Specified object cannot be moved. + + +LabVIEW: The VI Server or client received an unrecognized message. + + +LabVIEW: Invalid Class Operator VI. + + +LabVIEW: Specified object is not deletable. + + +LabVIEW: (Hex 0x446) Queue and notifier references of the same name must be obtained using the same data type. + + +LabVIEW: This container cannot be left without a subtype. Right-click the container border and select Replace or drag new subtype. + + +LabVIEW: (Hex 0x448) The Open VI Reference function cannot prepare non-reentrant VI for reentrant run. + + +LabVIEW: An exception occurred within the external code called by a Call Library Function Node. This might have corrupted LabVIEW's memory. Save any work to a new location and restart LabVIEW. + + +LabVIEW: Cannot disconnect type definitions or polymorphic VIs if the block diagram is not available. + + +LabVIEW: Scripting: SubVI is not loaded. + + +LabVIEW: No object of that name was found. No reference could be returned. + + +LabVIEW: (Hex 0x44D) Insufficient privileges to read, write, or create an item in the DataSocket Server. Use the DataSocket Server Manager to configure these privileges. + + +LabVIEW: The string input terminal is unwired. + + +LabVIEW: The XML tag describing the type of data is not recognized. + + +LabVIEW: No end tag was found for an XML start/end tag pair. + + +LabVIEW: An unknown or unexpected XML tag was discovered. + + +LabVIEW: The XML tag describing the type of data does not match the wired type. + + +LabVIEW: The XML enumerated type choice(s) does not match the wired type. + + +LabVIEW: XML value text is illegal or out of range for type and/or format. + + +LabVIEW: Unsupported data type. + + +LabVIEW: No longer used. + + +LabVIEW: Release Semaphore called on a semaphore that was not currently acquired. + + +LabVIEW: Internal Error. No class manager found for the type requested. + + +LabVIEW: Internal Error. The external object class was not found. + + +LabVIEW: This item is read-only. You must connect in read mode. + + +LabVIEW: This item is write-only. You must connect in write mode. + + +LabVIEW: RTTarget.DiskCache.SizeInKB config token must be greater than zero. + + +LabVIEW: RTTarget.DiskCache.Thread.Priority config token must be between -2 and 2. + + +LabVIEW: RTTarget.DiskCache.Thread.IntervalInSecs config token must be greater than zero. + + +LabVIEW: RTTarget.DiskCache.Thread.LinePerWakeup config token must be greater than or equal to zero. + + +LabVIEW: Not enough memory to create disk cache. + + +LabVIEW: Cannot create disk cache flush thread. + + +LabVIEW: Refnum became invalid while node waited for it. + + +LabVIEW: You cannot create an object (such as control caption) in built applications. You must create these objects in the LabVIEW development system. + + +LabVIEW: VI is not loadable. + +In a built application, this might be because the VI being loaded: + o was last compiled for a different OS, in which case you need to save the VI on the current platform. + o is a polymorphic VI, which can not be loaded in the Run-Time Engine. You should load an instance of the polymorphic VI instead of the polymorphic VI itself. + + +LabVIEW: VI version is later than the current LabVIEW version. + + +LabVIEW: VI version is too early to convert to the current LabVIEW version. + + +LabVIEW: Cannot instantiate template VI because it is already in memory. + + +LabVIEW: Input unit is not compatible with the current unit. + + +LabVIEW: You cannot assign the same value to two or more strings in a ring or combo box control. + + +LabVIEW: (Hex 0x46A) The VI Server connection peer is unresponsive. Refer to the LabVIEW Help for more information about connection polling. + + +LabVIEW: You cannot use this property with this system control. + + +LabVIEW: Busy with another operation. + + +LabVIEW: LabVIEW is busy connecting. + + +LabVIEW: A different read operation is in progress. + + +LabVIEW: The tree control's active item is not valid for this property. + + +LabVIEW: You wired an invalid item tag to a tree control property or method. + + +LabVIEW: Tree control's internal data is corrupt. + + +LabVIEW: An exception occurred within external code called by LabVIEW. This might have corrupted LabVIEW's memory. Save any work to a new location and restart LabVIEW. + + +LabVIEW: A DataSocket item name cannot contain certain characters. + + +LabVIEW: Exceeded maximum DataSocket item count. Use the DataSocket Server Manager to change the maximum number of dynamically created items the data server will allow. + + +LabVIEW: Exceeded maximum data item connection count. Use the DataSocket Server Manager to change the maximum number of connections the data server will allow. + + +LabVIEW: Multiple writers are not allowed. + + +LabVIEW: Cannot load dataskt.llb. + + +LabVIEW: Cannot insert VI in a subpanel control because VI is already open. + + +LabVIEW: Cannot open VI because it is already in a subpanel control. + + +LabVIEW: You attempted an operation that would change a child-only item into a parent item. + + +LabVIEW: Cannot insert a remote VI in a subpanel control. + + +LabVIEW: This property is read only while the VI is in a subpanel. + + +LabVIEW: Cannot close or set the state of a closed front panel. The front panel must already be open before you close it or set its state. + + +LabVIEW: Cannot open a front panel that is already open. To set the state of the open front panel, use the Front Panel Window:State property. + + +LabVIEW: Invalid input for front panel state. + + +LabVIEW: Cannot replace a locked object. + + +LabVIEW: Cannot replace object inside a group. + + +LabVIEW: Cannot replace this object with the type specified. + + +LabVIEW: Cannot insert the object of specified type into the wire. + + +LabVIEW: Memory full error, possibly due to a data format not matching expected data type. + + +LabVIEW: You cannot use this property with a numeric indicator. + + +LabVIEW: One or more application items already exist. + + +LabVIEW: Cannot find one or more application items. + + +LabVIEW: Illegal menu. + + +LabVIEW: Cannot find the menu because the front panel is not open. + + +LabVIEW: Cannot find one or more tags. + + +LabVIEW: Illegal shortcut. + + +LabVIEW: Cannot modify an application menu item. + + +LabVIEW: Cannot find the menu. + + +LabVIEW: One or more illegal menu item indexes. + + +LabVIEW: Cannot insert a group item as a menu bar item. + + +LabVIEW: Exceeded the maximum number of menus for this platform. The VI will use the default run-time menu. + + +LabVIEW: Cannot select the menu item because it is disabled or has a submenu attached to it. + + +LabVIEW: INTERNAL TO LABVIEW ONLY. DO NOT DOCUMENT TO USERS. Used by Queues and Notifiers to signal a condition in which they do not need to wait on data. + + +LabVIEW: You are attempting to start a new transaction when a transaction is currently underway. Please finish the current transaction before starting a new one. + + +LabVIEW: A .NET exception occurred. + + +LabVIEW: LabVIEW data type does not match the .NET type. + + +LabVIEW: Invalid return parameter for Call Library Function Node. The return type must be Void, Numeric, or String. Numeric return types are passed by value. Strings return types are passed as a C String Pointer or a Pascal String Pointer. + + +LabVIEW: Invalid array dimension in Call Library Function Node configuration. An array must have 1 or more dimensions. + + +LabVIEW: Invalid waveform dimension in Call Library Function Node configuration. A waveform must have 0 or 1 dimensions. + + +LabVIEW: Invalid data type for Call Library Function Node parameter. Void can be used only as return type of function. + + +LabVIEW: LabVIEW reached end of file. + + +LabVIEW: Access mode not supported for operation. + + +LabVIEW: Pending operation in progress. + + +LabVIEW: Protocol not recognized by LabVIEW. + + +LabVIEW: Error parsing URL. + + +LabVIEW: Synchronous operation not supported for protocol. + + +LabVIEW: Path not found, FTP login incorrect, or no FTP write permission. + + +LabVIEW: OPC item not found. + + +LabVIEW: Cannot show or hide the label on its own. Label visibility is controlled by the label owner. + + +LabVIEW: Internet Explorer is required for this operation but it is not installed. + + +LabVIEW: (Hex 0x4A4) The static VI reference is not configured. + + +LabVIEW: (Hex 0x4A5) You cannot register the same event on an object multiple times. + + +LabVIEW: The operation is not allowed when the control has key focus. + + +LabVIEW: The wire already has a probe on it. + + +LabVIEW: No data range set for digital displays. + + +LabVIEW: When a Boolean control has a latch mechanical action, you cannot use the Value property to read or write its value. + + +LabVIEW: This Express VI requires DIAdem 8.1 or later and the LabVIEW DIAdem Connectivity VIs version 2.1 or later. The Connectivity VIs are available for free download from ni.com. + + +LabVIEW: You must install the .NET Framework 1.1 Service Pack 1 or later for this operation. + + +LabVIEW: Cannot list the same terminal more than once in the grown region of the expandable subVI. + + +LabVIEW: (Hex 0x4AD) This operation is not valid for static VI references. To run a VI using a static VI reference, use an Invoke Node to call the Run VI method. + + +LabVIEW: (Hex 0x4AE) The VI is not in a state compatible with this operation. Change the execution mode of the referenced VI to reentrant for this operation. + + +LabVIEW: Cannot convert the specified LabVIEW type to .NET object. + + +LabVIEW: The dimension of the array passed in does not match the expected dimension for the operation. + + +LabVIEW: The size of the array passed in does not match the expected size of the array for the operation. + + +LabVIEW: The elements of the array are not unique. There are duplicated items in the array. + + +LabVIEW: The array index is outside of the array bounds. + + +LabVIEW: The required page cannot be found. + + +LabVIEW: Unable to load new code resource to the node. Code resource already loaded. + + +LabVIEW: Subpanel control could not open the VI window. + + +LabVIEW: The Property or Invoke Node is not linked to a front panel control. + + +LabVIEW: The Property or Invoke Node reference input terminal is already wired. + + +LabVIEW: The object is not in the same VI as the Property or Invoke Node. + + +LabVIEW: The input for class name is not correct or is in the wrong format. + + +LabVIEW: Structure frame index is out of range. + + +LabVIEW: You cannot use this property on a control in a radio buttons control. + + +LabVIEW: You cannot use this property on an instance of a type definition set to update automatically from the master copy of the type definition. + + +LabVIEW: You have attempted to create a data type with a descriptor that is too large. + + +LabVIEW: Specified method not found. + + +LabVIEW: Cannot load Facade VI. + + +LabVIEW: Run-time menu shortcuts are not supported for this kind of menu. + + +LabVIEW: Cannot insert a VI into a subpanel that is not in a running state. + + +LabVIEW: In edit mode, LabVIEW cannot return a property for a control part that you have not yet created. + + +LabVIEW: (Hex 0x529) NI License Manager is not initialized. + + +LabVIEW: Invalid project build reference. + + +LabVIEW: Invalid project source item reference. + + +LabVIEW: The specified key is invalid. + + +LabVIEW: (Hex 0x52D) LabVIEW cannot find the specified event. + + +LabVIEW: The specified project item is invalid. + + +LabVIEW: The specified NIIM is invalid for the current project. + + +LabVIEW: The instance of MAX associated with the project is invalid. + + +LabVIEW: The server site associated with the project is invalid. + + +LabVIEW: A provider associated with the project is invalid. + + +LabVIEW: A service provider associated with the project is invalid. + + +LabVIEW: The project site associated with the project is invalid. + + +LabVIEW: The project reference does not refer to a valid project. + + +LabVIEW: Unable to bind to the specified project item. + + +LabVIEW: Unable to update the specified item UI. + + +LabVIEW: The specified property is invalid. + + +LabVIEW: Not enough memory to complete this remote panel operation. + + +LabVIEW: Network type not supported by remote panel protocol. + + +LabVIEW: Remote panel connection is closed. + + +LabVIEW: Invalid server IP address. + + +LabVIEW: Remote panel connection refused by the specified server. + + +LabVIEW: Remote panel connection exceeds maximum number of licenses. + + +LabVIEW: Client does not have access to remote panel server. + + +LabVIEW: The remote panel protocol version is incompatible. + + +LabVIEW: The LabVIEW client version is incompatible with the LabVIEW server version. + + +LabVIEW: Server does not support remote panels. + + +LabVIEW: You cannot connect to the local LabVIEW application. + + +LabVIEW: Remote panel server failed to send the requested VI. + + +LabVIEW: Client does not have access to specified VI. + + +LabVIEW: Requested VI is broken and cannot be viewed or controlled. + + +LabVIEW: Requested VI is not a standard VI. You cannot view or control a polymorphic VI, custom control, or global variable VI remotely. + + +LabVIEW: Requested VI is not loaded into memory on the server computer. + + +LabVIEW: Requested VI is not in run mode. + + +LabVIEW: VI name required. + + +LabVIEW: Fatal error occurred during operation, closing connection. + + +LabVIEW: A remote panel connection does not exist for the specified VI. + + +LabVIEW: A LabVIEW file from that path already exists in memory. + + +LabVIEW: The splitter bar cannot be moved to this position because it violates the minimum or maximum size of a descendant pane. + + +LabVIEW: A drag cannot start because a previous drag transaction is still pending. + + +LabVIEW: Cannot provide the type of data requested for this drag and drop operation. + + +LabVIEW: The name or data type of a drag data element conflicts with the built-in LabVIEW drag data types. + + +LabVIEW: Cannot use this property with this string display mode or if word wrapping is enabled. + + +LabVIEW: The specified name or GUID is invalid. + + +LabVIEW: The provider plug-in is not installed or somehow corrupt. + + +LabVIEW: Failed to generate a valid GUID. + + +LabVIEW: You cannot hide or show the scroll bars of a subpanel control when a VI containing multiple panels is inserted. + + +LabVIEW: Unable to authenticate because the NI Security library failed to load. + + +LabVIEW: Unable to authenticate because LabVIEW failed to load an NI Security library that is required to authenticate access. + + +LabVIEW: Removing data connection from this control. + + +LabVIEW: The selected build failed to complete. + + +LabVIEW: Class library could not be loaded. + + +LabVIEW: Class private data control could not be loaded. + + +LabVIEW: Class could not be loaded. + + +LabVIEW: ScriptingLanguageError + + +LabVIEW: (Hex 0x55F) The Microsoft .NET Framework SDK 1.1 or later is not installed on this machine. + + +LabVIEW: A Diagram Disable structure cannot have a default frame. + + +LabVIEW: A Diagram Disable Structure cannot have conditions. + + +LabVIEW: Cannot set the Active Frame property on a Conditional Disable structure. + + +LabVIEW: The user failed a security authentication check. + + +LabVIEW: (Hex 0x564) License checkout failure. Unable to checkout the requested license feature because the license is invalid or does not exist. + + +LabVIEW: Cannot create semaphores with a size less than one. + + +LabVIEW: The Start Drag method failed because the control is configured to not allow dragging. + + +LabVIEW: The data type of the data read does not match the data type of the type input. + + +LabVIEW: Cannot start dragging because duplicate names for drag data types were passed to the Start Drag method or Drag Starting? event. + + +LabVIEW: Cannot start a drag and drop operation because the data provided is invalid. + + +LabVIEW: The specified .NET class is not available in LabVIEW. + + +LabVIEW: The specified .NET assembly is not available in LabVIEW. + + +LabVIEW: (Hex 0x56C) The block diagram you are attempting to access belongs to a VI that is either in evaluation mode or has an invalid license. + + +LabVIEW: (Hex 0x56D) You are attempting to save or copy a VI that is either in evaluation mode or has an invalid license. + + +LabVIEW: You attempted to open a VI Server reference to an out-of-scope VI. A VI can open VI Server references only to other VIs that it could call as subVIs. After the reference is opened, that VI can return the reference to other VIs that could not normally open the reference. + + +LabVIEW: Cannot set breakpoint on a Conditional Disable Structure that resides on a Simulation Diagram. + + +LabVIEW: LabVIEW classes do not support Revert if the library version has been bumped. There is insufficient information to undo a change to the live data in controls and indicators. To revert current changes, you must unload the class and all VIs that reference the class without saving any changes and then reload from disk. + + +LabVIEW: The LabVIEW Class is not in memory. This dynamic subVI cannot execute. Probe the wire going into the dynamic terminal to see the data type. Then open that LabVIEW class. + + +LabVIEW: This dynamic subVI cannot execute because the needed member VI cannot be found. + + +LabVIEW: The opening angle bracket was found in the open tag, but the closing angle bracket is missing from the open tag. + + +LabVIEW: Cannot convert text from the source character set to the destination character set. + + +LabVIEW: You have not wired a required input on this subVI. + + +LabVIEW: The subVI cannot be inlined because there is a local variable in the block diagram. + + +LabVIEW: The subVI cannot be inlined because a front panel terminal is not on the root diagram. + + +LabVIEW: Attempted to read flattened data of a LabVIEW class. The flat data could not be converted to the requested type because the flat data was not the same as the requested type nor was it any child class of the requested type. + + +LabVIEW: Attempted to read flattened data of a LabVIEW class. The version of the class currently in memory is older than the version of the data. You must find a newer version of the class to load this data. + + +LabVIEW: Attempted to read flattened data of a LabVIEW class. The data was written by an old version of the class, and the class no longer supports loading and mutating data from that version. + + +LabVIEW: Attempted to read flattened data of a LabVIEW class. The data is corrupt. It could not be interpreted as any valid flattened LabVIEW class. + + +LabVIEW: (Hex 0x57C) Cannot insert or delete menu items while LabVIEW is tracking this menu. This error occurs when you use the Insert Menu Items or Delete Menu Items function to add or remove a menu item while a user is interacting with the menu. + + +LabVIEW: Operator Overloading info for a datatype has unsupported version number. + + +LabVIEW: (Hex 0x57E) Target file name to be searched is empty + + +LabVIEW: Specified path to LV Targets Folder is not a Path + + +LabVIEW: Specified Target Folder path for the given LabVIEW Target is not valid + + +LabVIEW: Specified path for the given LabVIEW Target's directory is not a folder + + +LabVIEW: Specified LibDir in TargetDir chain has invalid path + + +LabVIEW: Specified LibDir in Target information file is not folder + + +LabVIEW: Specified path to Target's parent is not valid + + +LabVIEW: Specified path to Target's parent is not a folder + + +LabVIEW: Parent of a given target should not be contained within the target folder. + + +LabVIEW: Given Target Class Name is already registered with different Target Path + + +LabVIEW: This Target Class Name is already registered with different device class + + +LabVIEW: This Target Class name has not been instantiated + + +LabVIEW: Specified LabVIEW Target Name is empty + + +LabVIEW: LabVIEW Target URL is empty + + +LabVIEW: Application Instance Name or Target Alias is empty + + +LabVIEW: Empty TargetClass name + + +LabVIEW: Target is offline. + + +LabVIEW: Specified target syntax file for the given target could not be found + + +LabVIEW: Bad Application Reference + + +LabVIEW: Specified Application Instance not found + + +LabVIEW: Application Instance Name already in use under a given Target + + +LabVIEW: Application Instance of the given name exists but one or more properties do not match + + +LabVIEW: Application Instance has VIs running which need to be stopped and closed before executing the desired operations + + +LabVIEW: Command not supported by Target + + +LabVIEW: The path is empty or relative. You must use an absolute path. + + +LabVIEW: This property cannot be used on a front panel with splitters. + + +LabVIEW: The specified format may not be used with floating point data. For example, hexidecimal notation is not a valid format for floating point numbers. + + +LabVIEW: Absolute and Relative time formats may not be used with complex numbers. + + +LabVIEW: The precision is greater than the maximum allowed value for this format. + + +LabVIEW: Valid format values are from 0 to 8. + + +LabVIEW: Numeric precision can not be negative. + + +LabVIEW: This application menu item has been removed. Menu item tags that existed in previous versions of LabVIEW as LabVIEW application item tags cannot be used. + + +LabVIEW: Archive version is later than the current LabVIEW version. + + +LabVIEW: A project library cannot be copied to the same folder as the original library because the new library files would conflict with the original library files on disk. You must specify a different location on disk when copying a project library. + + +LabVIEW: The filename does not match the expected name. + + +LabVIEW: An error has occurred in the build. Rebuild from the Project Explorer window to generate a more detailed error message. + + +LabVIEW: The minimum pane size cannot be set to a value less than one. + + +LabVIEW: Debug connection refused by specified server: Only one debug connection is allowed per application or shared library. + + +LabVIEW: No VIs to download from application, connection closed. + + +LabVIEW: Open VI Reference will no longer match VIs in memory by file name. A VIs full name now includes any owning libraries so a filename is no longer sufficient. You can use strip path to wire the filename as a string, but this will not work for VIs in libraries. + + +LabVIEW: The description and tip strip of a control cannot be changed if in a reentrant VI with multiple instances. + + +LabVIEW: Start time input is not an integer multiple of dt. Value was coerced to nearest integer multiple of dt. + + +LabVIEW: Duration input is not an integer multiple of dt. Value was coerced to nearest integer multiple of dt. + + +LabVIEW: Waveforms have different dt values. + + +LabVIEW: Waveform x-axis value requested is out of range. + + +LabVIEW: Start index, value, or tolerance is NaN. + + +LabVIEW: Start index is out of range. + + +LabVIEW: Signal value input is outside the range of the digital data. + + +LabVIEW: Appending data with mismatched numbers of digital samples or signals. + + +LabVIEW: Values other than 0, 1, L, H are present in the digital data. + + +LabVIEW: Highest resolution supported for conversion is 52. + + +LabVIEW: Values other than 0, 1, L, and H are present in the digital data and were coerced to 0. + + +LabVIEW: This property does not contain data. + + +LabVIEW: The source control operation was cancelled before completion. + + +LabVIEW: A change occurred to the specified file while the operation was running. Reload the file. + + +LabVIEW: (Hex 0x12C0) Selected Device is Invalid + + +LabVIEW: (Hex 0x12C1) Invalid sound task refnum. + + +LabVIEW: (Hex 0x12C2) The sound device is busy. + + +LabVIEW: (Hex 0x12C3) The sound driver or card does not support the desired operation. + + +LabVIEW: (Hex 0x12C4) Cannot write in file playback. + + +LabVIEW: (Hex 0x12C5) Could not find the sound file. + + +LabVIEW: (Hex 0x12C6) DirectX 8.0 or higher is required to run. + + +LabVIEW: (Hex 0x12CA) Cannot recognize sound format. + + +LabVIEW: (Hex 0x12CB) Cannot support sound format. + + +LabVIEW: (Hex 0x12D4) A buffer underflow has occurred. + + +LabVIEW: (Hex 0x12D5) Overwrite error. + + +LabVIEW: (Hex 0x12D6) A timeout occurred before the operation finished. + + +LabVIEW: (Hex 0x12D7) A task must be running to perform this operation. + + +LabVIEW: Invalid refnum. + + +LabVIEW: Invalid string. + + +LabVIEW: A request for a synchronous advise transaction has timed out. + + +LabVIEW: The response to the transaction caused the DDE_FBUSY bit to be set. + + +LabVIEW: A request for a synchronous data transaction has timed out. + + +LabVIEW: The DDEML function was called without first calling the DdeInitialize function or an invalid instance identifier was pass to a DDEML function. + + +LabVIEW: An application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions. + + +LabVIEW: A request for a synchronous execute transaction has timed out. + + +LabVIEW: A parameter failed to be validated by the DDEML: e.g., the data handle is initialized with a different name-item or different clipboard data format than that required; the application used a client-side conversation handle with a server-side function, or vice-versa; the application used a freed data or string handle; or more than one instance of the application used the same object. + + +LabVIEW: A DDEML application has created a prolonged race condition (where the server application outruns the client), causing large amounts of memory to be consumed. + + +LabVIEW: A memory allocation failed. + + +LabVIEW: A transaction failed. + + +LabVIEW: A client's attempt to establish a conversation has failed. + + +LabVIEW: A request for a synchronous poke transaction has timed out. + + +LabVIEW: An internal call to the PostMessage function has failed. + + +LabVIEW: An application instance with a synchronous transaction already in progress attempted to initiate another synchronous transaction, or the DdeEnableCallback function was called from within a DDEML call function. + + +LabVIEW: A server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction. + + +LabVIEW: An internal error has occurred in the DDEML. + + +LabVIEW: A request to end an advise transaction has timed out. + + +LabVIEW: An invalid transaction identifier was passed to a DDEML function. After the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid. + + +LabVIEW: Invalid command code. + + +LabVIEW: Occurrence timeout; the transaction timed out before it completed. + + +LabVIEW: ActiveX Event data was not available. + + +LabVIEW: ActiveX Event Information was not available. + + +LabVIEW: The occurrence associated with the ActiveX Event was not found. + + +LabVIEW: The ActiveX Event queue could not be created. + + +LabVIEW: (Hex 0x3F53) 211 System status or system help reply. + + +LabVIEW: (Hex 0x3F56) 214 Help message. + + +LabVIEW: (Hex 0x3F5C) 220 "domain" Service ready. + + +LabVIEW: (Hex 0x3F5D) 221 domain service closing transmission channel. + + +LabVIEW: (Hex 0x3F7A) 250 Requested mail action okay, completed. + + +LabVIEW: (Hex 0x3F7B) 251 User not local; will forward to "forward-path." + + +LabVIEW: (Hex 0x3FE2) 354 Start mail input; end with two carriage-return/line-feed characters. + + +LabVIEW: (Hex 0x4025) 421 "domain" service not available, closing transmission channel. This might be a reply to any command if the service knows it must shut down. + + +LabVIEW: (Hex 0x4042) 450 Requested mail action not taken: mailbox unavailable. For example, the mailbox might be busy. + + +LabVIEW: (Hex 0x4043) 451 Requested action aborted: local error in processing. + + +LabVIEW: (Hex 0x4044) 452 Requested action not taken: insufficient system storage. + + +LabVIEW: (Hex 0x4074) 500 Syntax error, command unrecognized. For example, the command line might be too long. + + +LabVIEW: (Hex 0x4075) 501 Syntax error in parameters or arguments. + + +LabVIEW: (Hex 0x4076) 502 Command not implemented. + + +LabVIEW: (Hex 0x4077) 503 Bad sequence of commands. + + +LabVIEW: (Hex 0x4078) 504 Command parameter not implemented. + + +LabVIEW: (Hex 0x40A6) 550 Requested action not taken: mailbox unavailable. For example, the mailbox was not found or there is no access. + + +LabVIEW: (Hex 0x40A7) 551 User not local; try "forward-path." + + +LabVIEW: (Hex 0x40A8) 552 Requested mail action aborted: exceeded storage allocation. + + +LabVIEW: (Hex 0x40A9) 553 Requested action not taken: mailbox name not allowed. For example, the mailbox syntax might be incorrect. + + +LabVIEW: (Hex 0x40AA) 554 Transaction failed. + + +LabVIEW: The number of signals in Input Signal A does not match the number of signals in Input Signal B. Unmatched signals will be ignored. + + +LabVIEW: This slot-based variable has already been read within this network cycle or this shared-memory-based variable has never been instantiated by the owner. + + +LabVIEW: No new data has been received for more than one network cycle because no new data has been written to the channel on the source node. The source node is still on-line. + + +LabVIEW: No new data has been received for more than one network cycle because the source node is off-line + + +LabVIEW: One of the values received form the source node has not been read and has been overwritten + + +LabVIEW: One of the values has been overwritten before it has been sent. This warning is reported for non-shared-memory variables that have been written for more than once in a single network cycle. + + +LabVIEW: No data has been sent from this channel in the previous network cycle because write operation has been delayed beyond a preconfigured threshold. The delay was probably caused by an interrupt. + + +LabVIEW: Clock synchronization algorithm failed because enough cycle start packets have been missed - no more write network transactions will be allowed until the deterministic communication engine is restarted. + + + +LabVIEW: Read had to be retried at least once before it succeeded due to new data being placed into the buffer + + +LabVIEW: Network transmission violated requested timing. See documentation for more information about what might have caused the error and how can it be avoided + + +LabVIEW: An already deployed configuration for one or more network nodes does not match this node's configuration. + + +LabVIEW: A valid packet that does not follow to NI's deterministic protocol has been detected on the network. The node/network will be shut down. + + +LabVIEW: Generic project error. + + +LabVIEW: An item with this name already exists in the project. + + +LabVIEW: An item with this path already exists in the project. + + +LabVIEW: Adding this item would cause a conflict with an item already in memory. + + +LabVIEW: The project Item could not be found. + + +LabVIEW: The item type is not compatible with the target type. + + +LabVIEW: (Hex 0x3FFC0101) ID Query not supported. + + +LabVIEW: (Hex 0x3FFC0102) Reset not supported. + + +LabVIEW: (Hex 0x3FFC0103) Self-test not supported. + + +LabVIEW: (Hex 0x3FFC0104) Error Query not supported. + + +LabVIEW: (Hex 0x3FFC0105) Revision Query not supported + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/Measure-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/Measure-errors.txt new file mode 100755 index 0000000..3f5545f --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/Measure-errors.txt @@ -0,0 +1,28 @@ + + + + + + + +Measure: Task cannot be stopped, because at least one installed event handler has not been removed. + +Remove all installed event handlers by calling +CNiDAQmxEvent::RemoveEventHandler or CNiDAQmxEvent::RemoveAllEventHandlers. See the documentation for more information. + + +Measure: An analog output channel string represents multiple analog output channels. Measure requires that each analog output channel string contain only one analog output channel. + + +Measure: Excel is out of memory. Use a smaller range. + + +Measure: The range that is specified in the task's configuration is not valid. + + +Measure: The worksheet that is specified in the task's configuration does not exist. + + +Measure: Unable to find task. + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/NI-Reports-errors.txt b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/NI-Reports-errors.txt new file mode 100755 index 0000000..b7493b6 --- /dev/null +++ b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/errors/English/NI-Reports-errors.txt @@ -0,0 +1,31 @@ + + + + + + + +NI-Reports: This type of report is not supported on this platform. + + +NI-Reports: Invalid margins. + + +NI-Reports: Print error + + +NI-Reports: File open error. + + +NI-Reports: Invalid printer name + + +NI-Reports: Out of memory. + + +NI-Reports: An unknown error has occurred. + + +NI-Reports: (Hex 0xA028) Function not valid with current report type. + + \ No newline at end of file diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblkdynam.so b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblkdynam.so new file mode 100755 index 0000000..f57f53e Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblkdynam.so differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblkrealt.so b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblkrealt.so new file mode 100755 index 0000000..4a6f476 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblkrealt.so differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblksec.so b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblksec.so new file mode 100755 index 0000000..c24e8cf Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblksec.so differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblksock.so b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblksock.so new file mode 100755 index 0000000..4e404a4 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblksock.so differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblvrt.so.8.0 b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblvrt.so.8.0 new file mode 100755 index 0000000..71f87ed Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblvrt.so.8.0 differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblvrtdark.so.8.0 b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblvrtdark.so.8.0 new file mode 100755 index 0000000..e3ea5f9 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/liblvrtdark.so.8.0 differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/libnitaglv.so b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/libnitaglv.so new file mode 100755 index 0000000..ae17b9e Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/libnitaglv.so differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/lvanlys.so b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/lvanlys.so new file mode 100755 index 0000000..8ac8a16 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/lvanlys.so differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/lvdark b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/lvdark new file mode 100755 index 0000000..e92a75f Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/lvdark differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/arrow.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/arrow.ptc new file mode 100755 index 0000000..8c4efba Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/arrow.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/attank.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/attank.ptc new file mode 100755 index 0000000..56b5b6e Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/attank.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/bowvalve.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/bowvalve.ptc new file mode 100755 index 0000000..825db69 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/bowvalve.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/box_inc.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/box_inc.ptc new file mode 100755 index 0000000..6df8ef7 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/box_inc.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/box_incp.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/box_incp.ptc new file mode 100755 index 0000000..76fdcba Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/box_incp.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/boxshadow.3ds b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/boxshadow.3ds new file mode 100755 index 0000000..777e5f3 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/boxshadow.3ds differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/frame_i.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/frame_i.ptc new file mode 100755 index 0000000..ad54851 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/frame_i.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/frame_o.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/frame_o.ptc new file mode 100755 index 0000000..639f6b0 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/frame_o.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/gauge_f.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/gauge_f.ptc new file mode 100755 index 0000000..148243d Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/gauge_f.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/inc.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/inc.ptc new file mode 100755 index 0000000..b9682b7 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/inc.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/knob_d.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/knob_d.ptc new file mode 100755 index 0000000..6f72e97 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/knob_d.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/knob_h.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/knob_h.ptc new file mode 100755 index 0000000..60cfdd4 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/knob_h.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/knob_t.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/knob_t.ptc new file mode 100755 index 0000000..7ab9bb5 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/knob_t.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/meter_f.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/meter_f.ptc new file mode 100755 index 0000000..5af38f0 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/meter_f.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/meter_g.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/meter_g.ptc new file mode 100755 index 0000000..9f17134 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/meter_g.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/meter_h.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/meter_h.ptc new file mode 100755 index 0000000..b35a7e3 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/meter_h.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pb_d.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pb_d.ptc new file mode 100755 index 0000000..8e9e983 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pb_d.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pb_h.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pb_h.ptc new file mode 100755 index 0000000..f6b2f84 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pb_h.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pb_l.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pb_l.ptc new file mode 100755 index 0000000..94591b7 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pb_l.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pro_bar.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pro_bar.ptc new file mode 100755 index 0000000..ec66b5f Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pro_bar.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pro_bar_in.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pro_bar_in.ptc new file mode 100755 index 0000000..e0aae17 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/pro_bar_in.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rectvalve.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rectvalve.ptc new file mode 100755 index 0000000..f759260 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rectvalve.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rocker.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rocker.ptc new file mode 100755 index 0000000..3dcd89c Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rocker.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rockerl.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rockerl.ptc new file mode 100755 index 0000000..a25ea36 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rockerl.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rockerr.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rockerr.ptc new file mode 100755 index 0000000..e940b6e Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/rockerr.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slided.3ds b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slided.3ds new file mode 100755 index 0000000..2f83f0f Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slided.3ds differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slideh.3ds b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slideh.3ds new file mode 100755 index 0000000..94b2643 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slideh.3ds differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_b.3ds b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_b.3ds new file mode 100755 index 0000000..992706d Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_b.3ds differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_d.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_d.ptc new file mode 100755 index 0000000..607024b Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_d.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_f.3ds b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_f.3ds new file mode 100755 index 0000000..c40f45a Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_f.3ds differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_t.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_t.ptc new file mode 100755 index 0000000..aa62f50 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slider_t.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slidet.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slidet.ptc new file mode 100755 index 0000000..7274201 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/slidet.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/squreled.3ds b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/squreled.3ds new file mode 100755 index 0000000..11e4c66 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/squreled.3ds differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tab.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tab.ptc new file mode 100755 index 0000000..ccd56ec Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tab.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tank.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tank.ptc new file mode 100755 index 0000000..50957f6 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tank.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tb_h.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tb_h.ptc new file mode 100755 index 0000000..c935ce7 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tb_h.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tb_h_in.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tb_h_in.ptc new file mode 100755 index 0000000..4d7375a Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/tb_h_in.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/therm_e.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/therm_e.ptc new file mode 100755 index 0000000..1ae4b6e Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/therm_e.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/therm_h.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/therm_h.ptc new file mode 100755 index 0000000..c570e06 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/therm_h.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/toggle_b.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/toggle_b.ptc new file mode 100755 index 0000000..491cb0f Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/toggle_b.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/toggle_s.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/toggle_s.ptc new file mode 100755 index 0000000..df5a1b3 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/toggle_s.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/toggle_su.ptc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/toggle_su.ptc new file mode 100755 index 0000000..1f09f07 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/models/toggle_su.ptc differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/nids.so b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/nids.so new file mode 100755 index 0000000..69aafa6 Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/nids.so differ diff --git a/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/rtapp.rsc b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/rtapp.rsc new file mode 100755 index 0000000..5310b0f Binary files /dev/null and b/knoppix-remastering/local.conf.d/template-tree.d/usr/local/lib/rtapp.rsc differ diff --git a/knoppix-remastering/remaster.sh b/knoppix-remastering/remaster.sh index 932fb44..80dd66e 100755 --- a/knoppix-remastering/remaster.sh +++ b/knoppix-remastering/remaster.sh @@ -2,19 +2,22 @@ # set -ue +#set -x #################### some settings ###################### # the base directory of your local development files -ROOT_DIR=$(dirname "$0") +ROOT_DIR=$(cd $(dirname "$0"); pwd) # the user may define a different location for the local configuration by setting "LOCAL_CONF_DIR" # otherwise use the default (local.conf.d) LOCALCONF_DIR=${LOCALCONF_DIR:-${ROOT_DIR}/local.conf.d} MASTER=$LOCALCONF_DIR/master.img -BUILD_DIR=$LOCALCONF_DIR/build +BUILD_DIR=${BUILD_DIR:-$ROOT_DIR/build} +IMAGE_DIR=${IMAGE_DIR:-$BUILD_DIR/images} SCRIPTS_DIR=$LOCALCONF_DIR/chroot_scripts.d +TEMPLATE_DIR=$LOCALCONF_DIR/template-tree.d PKG_INSTALL_LIST_DIR=$LOCALCONF_DIR/package-install.lst.d PKG_REMOVE_LIST_DIR=$LOCALCONF_DIR/package-remove.lst.d @@ -23,13 +26,19 @@ BOOT_DIR=$BUILD_DIR/bootfs TMP_DIR=$BUILD_DIR/tmp BACKUP_DIR=$BUILD_DIR/backup -IMAGE_FILE=$BUILD_DIR/remastered.iso +IMAGE_FILE=$IMAGE_DIR/remastered.iso +IMAGEZ_FILE=$IMAGE_DIR/remastered.iso.z +CDWRITER=0,0,0 ################# quite constant things ################# # the relative name of the image file on the cd KNOPPIX_IMAGE=KNOPPIX/KNOPPIX +# isofs options +MKISOFS_OPTIONS="-allow-multidot -U -D -iso-level 3 -b lib/grub/i386-pc/stage2_eltorito -no-emul-boot -boot-load-size 1 -boot-info-table -pad -R" + + ################### general functions ################### # maybe this could be useful later @@ -107,10 +116,10 @@ function master_backup() local boot_parent=$(dirname "$BOOT_DIR") local boot_entry=$(basename "$BOOT_DIR") [ -e "$BACKUP_DIR" ] || mkdir -p "$BACKUP_DIR" - echo "Creating archive of the root filesystem (this may take _very_ long) ..." - tar czf "$BACKUP_DIR/rootfs.tar.gz" -C "$root_parent" "$root_entry" echo "Creating archive of the boot filesystem ..." tar czf "$BACKUP_DIR/bootfs.tar.gz" -C "$boot_parent" "$boot_entry" + echo "Creating archive of the root filesystem (this may take _very_ long) ..." + tar czf "$BACKUP_DIR/rootfs.tar.gz" -C "$root_parent" "$root_entry" } @@ -144,7 +153,17 @@ function master_restore() } -umount_procfs() +function remove_packages() +{ + local pkg_list=$(find "$PKG_REMOVE_LIST_DIR" -type f | while read a + do grep -v "^#" "$a" | tr "\n" " " + done) + [ -z "$pkg_list" ] && return + echo "dpkg --force-all -P $pkg_list 2>&1 | grep -v 'which isn.t installed.'" | chroot_image +} + + +function umount_procfs() { # check for a mounted procfs mount | grep -q " $ROOT_DIR/proc " && umount "$ROOT_DIR/proc" @@ -152,32 +171,49 @@ umount_procfs() } -function create_iso() +# execute the content of stdin within the chroot environment +# runs an interactive shell, if stdin is empty +function chroot_image() +{ + umount_procfs + mount -t proc proc "$ROOT_DIR/proc" + # ignore errors + set +e + local action=$@ + [ -z "$action" ] && action=/bin/bash + LANG=C TERM=linux chroot "$ROOT_DIR" $action + set -e + umount "$ROOT_DIR/proc" + return +} + +function create_iso_root() { umount_procfs echo "Creating the iso ..." mkisofs $MKISOFS_OPTIONS -o "$IMAGE_FILE" "$ROOT_DIR" + #kisofs -b lib/grub/i386-pc/stage2_eltorito -no-emul-boot -boot-load-size 1 -boot-info-table -R -U -V "silicann_compressed_livecd" --publisher "Silicann GmbH" -hide-rr-moved -cache-inodes -no-bak -pad -o "$IMAGE_FILE" "$ROOT_DIR" } function configure() { - if [ ! -e "$IMAGE_DIR" ]; then - echo -e "Directory \"$IMAGE_DIR\" not found!" - echo -e "Did you run \"$0 dfsbuild\"?" + if [ ! -e "$ROOT_DIR" ]; then + echo -e "Directory \"$ROOT_DIR\" not found!" + echo -e "Did you run \"$0 init\"?" exit 1 fi - echo "Copying files to the box ..." - [ -e "$TMP_DIR" ] && rm -rf "$TMP_DIR" - # svn export --force "$TEMPLATE_DIR/." "$IMAGE_DIR" + echo "Copying files ..." + # svn export --force "$TEMPLATE_DIR/." "$ROOT_DIR" # only ignore the owner attribut - cp -r --preserve=mode,timestamps,links "$TEMPLATE_DIR/." "$IMAGE_DIR" 2>&1 | indentation + cp -r --preserve=mode,timestamps,links "$TEMPLATE_DIR/." "$ROOT_DIR" 2>&1 | indentation - echo "Configuring the cryptobox ..." - find "$SCRIPTS_DIR" -L -type f | sort | while read scriptname + echo "Configuring ..." + # filter hidden files - they are usually vi-swap-files :) + find -L "$SCRIPTS_DIR" -type f | grep -v "/\." | sort | while read scriptname do echo "Executing $scriptname ..." - chroot_image "$scriptname" 2>&1 | indentation + cat "$scriptname" | chroot_image done } @@ -185,24 +221,33 @@ function configure() function blanknburn_cdrw() { cdrecord -v dev=$CDWRITER blank=fast - cdrecord -v dev=$CDWRITER "$IMAGE_FILE" + cdrecord -v dev=$CDWRITER "$IMAGEZ_FILE" +} + + +function initialization() +{ + # initialize local directories (easier for users) + for a in "$LOCALCONF_DIR" "$BUILD_DIR" "$SCRIPTS_DIR" "$PKG_INSTALL_LIST_DIR" "$PKG_REMOVE_LIST_DIR" "$TMP_DIR" "$BACKUP_DIR" "$TEMPLATE_DIR" "$IMAGE_DIR" + do if [ ! -e "$a" ] + then echo "Creating directory '$a' ... " + mkdir -p "$a" + fi + done + } ################ do it! ###################### -[ $# -eq 0 ] && echo "[`basename $0`] - no arguments supplied - maybe you want to use '--help'" +if [ $# -eq 0 ] + then echo "[`basename $0`] - no arguments supplied - maybe you want to use '--help'" >&2 + exit 1 + fi +# check for uid=0 (necessary for all operations except for qemu) +[ "$(id -u)" -ne 0 -a "$*" != "qemuz" ] && echo "this script ($0) has to be called as root" >&2 && exit 1 -# initialize local directories (easier for users) -for a in "$LOCALCONF_DIR" "$BUILD_DIR" "$SCRIPTS_DIR" "$PKG_INSTALL_LIST_DIR" "$PKG_REMOVE_LIST_DIR" "$TMP_DIR" "$BACKUP_DIR" - do if [ ! -e "$a" ] - then echo "Creating directory '$a' ... " - mkdir -p "$a" - fi - done - -# check for uid=0 (necessary for all operations) -[ "$(id -u)" -ne 0 ] && echo "this script ($0) has to be called as root" >&2 && exit 1 +initialization while [ $# -gt 0 ] do case "$1" in @@ -215,29 +260,50 @@ while [ $# -gt 0 ] restore ) master_restore ;; - config ) - configure_cb normal + packages ) + remove_packages + #install_packages ;; - iso ) - create_iso + config ) + configure + ;; + compress ) + [ -e "$IMAGE_FILE" ] || "$0" iso-root + cat "$IMAGE_FILE" | chroot_image /usr/bin/create_compressed_fs --best - 65536 >"$BOOT_DIR/KNOPPIX/KNOPPIX" + ;; + iso-boot ) + [ -e "$BOOT_DIR/KNOPPIX/KNOPPIX" ] || "$0" compress + mkisofs -pad -l -r -J -v -V "silicann_livecd" --publisher "Silicann GmbH" -b boot/isolinux/isolinux.bin -no-emul-boot -boot-load-size 4 -boot-info-table -c KNOPPIX/boot.cat -hide-rr-moved -o "$IMAGEZ_FILE" "$BOOT_DIR" + ;; + chroot ) + chroot_image + ;; + iso-root ) + create_iso_root + ;; + qemu ) + qemu -cdrom "$IMAGE_FILE" -nics 0 + ;; + qemuz ) + qemu -cdrom "$IMAGEZ_FILE" -nics 0 ;; burn ) blanknburn_cdrw ;; release ) - $0 init config iso - md5sum $IMAGE_FILE > ${IMAGE_FILE}.md5sum - sha1sum $IMAGE_FILE > ${IMAGE_FILE}.sha1sum + "$0" init packages config iso-root compress iso-boot + md5sum "$IMAGEZ_FILE" > "${IMAGE_FILE}.md5sum" + sha1sum "$IMAGEZ_FILE" > "${IMAGE_FILE}.sha1sum" ;; help|--help ) - echo "Syntax: `basename $0` ( release | init | config | iso | burn | help )" + echo "Syntax: `basename $0` ( release | init | backup | packages | config | iso-root | iso-boot | compress | burn | help )" echo " (you may specify more than one action)" echo ;; * ) echo -e "unknown action: $1" echo - $0 help + "$0" help exit 1 ;; esac