I am setting up Zimbra mail server on Centos 8.8.12 server OS. while installing zimbra, I am getting following error. ./util/utilfunc.sh: line 2314: print: command not found Please guide.
Asked
Active
Viewed 3,137 times
1
-
1Please post error as text. Many users don't have access to `imgur` at workplace – Digvijay S Jun 25 '20 at 07:22
-
./util/utilfunc.sh: line 2314: print: command not found – Nitesh Jun 25 '20 at 07:23
-
1https://forums.zimbra.org/viewtopic.php?t=64742 – Digvijay S Jun 25 '20 at 07:25
-
used --platform-override but its failing installation at later point of time. – Nitesh Jun 25 '20 at 09:43
1 Answers
0
There are two problems coming together:
You are not running bash, as you can see from the wording of the error message. A bash error message would start with the word bash, i.e. bash: print: command not found
Since print is not an internal command to bash (it would be one in, say, zsh), you need to have a file named
print
in one of the directories listed in yourPATH
, and this file needs to have executable permission.

user1934428
- 19,864
- 7
- 42
- 87
-
@Nitesh: And the directory is in the PATH? Update your question to demonstrate how you verified this. – user1934428 Jun 25 '20 at 12:42