Logged in as Root
Copied all folders (DISK_1, DISK_2, DISK_3) to disk.
Create a user XI
Su XI (login as xi)
cd /…/DISK_1/
Running installation ./install.sh
and it outputs:
BusinessObjects Enterprise currently only supports locales using UTF-8
encoding. Please change your locale
to one using UTF-8 encoding and try again.
Thank you for choosing Business Objects.
Exiting...
I tried: setenv LANG en_US.UTF-8
…but does not help. Is there an other way to work around this problem ?
It looks like the install script checks locale in the following order… This if from an older install script - I don’t have SP2 downloaded.
# figure out which local encoding to use
encoding="$LC_ALL"
if [ "$encoding" = "" ]; then encoding="$LC_CTYPE"; fi
if [ "$encoding" = "" ]; then encoding="$LANG"; fi
So, also check your LC_ALL and LC_CTYPE first and possibly change them also?