The following error messages are generated during a clean install:chmod: cannot access `/opt/ibm/lotus/notes/res/*': No such file or directory
No such directory:/etc/lotus/notes/data/shared/MUI
The first error is caused by opt/ibm/lotus/notes/internal_uninst/postInstall.sh, line 341:
chmod -R 755 “$NOTESBIN”/res/*
Reason for the error: there are no files in that directory, so the wildcard can’t be solved.
The second one can be resolved with mkdir -p /etc/lotus/notes/data/shared/MUI; chmod 777 /etc/lotus/notes/data/shared/MUI and rerunning the install with the --force option, though the postinstall-script (line 377) should have build that directory itself.
End of story: both errors can be ignored.