Forum Discussion
Altera_Forum
Honored Contributor
15 years agoIf you're running this on some version of Ubuntu, the problem lies in that on Debian-based distributions, /bin/sh is a symlink to /bin/dash, which has a slightly different syntax than bash, which is what the installer scripts were written for. To work around this, do the following in a tty window:
sudo rm /bin/sh
sudo ln -s /bin/bash /bin/sh <perform the installation> and then, optionally: sudo rm /bin/sh
sudo ln -s /bin/dash /bin/sh Best regards, Ben