Forum Discussion
Altera_Forum
Honored Contributor
14 years agoFinally, I found an answer in this post: alteraforum.com/forum/showthread.php?t=32760
One point that we have found with Ubuntu. Most things do work well, however the issue that you mention in your note is very similar to some other .sh issues that we have seen. On Ubuntu, this is commonly resolved by changing the symbolic link for /bin/sh from /bin/dash to /bin/bash:
sudo rm /bin/sh
sudo ln -s /bin/bash /bin/sh
Dash and Bash have a slightly different syntax, and that gets us around most issues. This solution worked for me :)