Natron 2.3.14 Linux hotfix 1

Natron 2.3.14 for Linux had some broken symlinks that might result in segfaults or other issues depending on your system.

The following hotfix will fix your Natron installation.

Download Natron-2.3.14-Linux-hotfix.sh from GitHub, make it executable and run it with the path to your Natron installation folder as an argument.

Example:

wget https://github.com/NatronGitHub/Natron/releases/download/v2.3.14/Natron-2.3.14-Linux-hotfix.sh
chmod +x Natron-2.3.14-Linux-hotfix.sh
./Natron-2.3.14-Linux-hotfix.sh Natron2
4 Likes

This is awesome! I’m going to try it and do a video on it right now :slight_smile

1 Like

This need to be changed (the https has a v for v2.3.14 now)

wget https://github.com/NatronGitHub/Natron/releases/download/v2.3.14/Natron-2.3.14-Linux-hotfix.sh
chmod +x Natron-2.3.14-Linux-hotfix.sh
./Natron-2.3.14-Linux-hotfix.sh Natron2

Also, the Natron-2.3.14-Linux-hotfix.sh need to be modified :

@@ -15,7 +17,7 @@
 NATRON_DIR=`readlink -f ${1}`
 LCMS_SO_32="liblcms2-Linux-x86_32bit.tgz"
 LCMS_SO_64="liblcms2-Linux-x86_64bit.tgz"
-LCMS_URL="https://github.com/NatronGitHub/Natron/releases/download/2.3.14"
+LCMS_URL="https://github.com/NatronGitHub/Natron/releases/download/v2.3.14"
 LCMS_SO_32_URL="${LCMS_URL}/${LCMS_SO_32}"
 LCMS_SO_64_URL="${LCMS_URL}/${LCMS_SO_64}"
 LCMS_SO_URL=${LCMS_SO_32_URL}

Fixed.

Thank you @rodlie

@rodlie The shebang is wrong at the beginning of the script, is should be #!/bin/bash, not #/bin/bash

Typo fixed.

I just installed Natron using the linux installer, and I don’t have the Text Node under the Draw nodes menu. I read this thread, and ran the hotfix, however the Text Node still isn’t showing. What do I try next?

Try clearing the plugin cache (in the cache menu)

That did it! Thanks!