9.04 serverissä oli ongelmia kieliasetusten kanssa.
Jos pyysin vaikka 'man ls' sain seuraavan vastauksen, enkä välttämättä haluamaani man pagea:
man: can't set the locale; make sure $LC_* and $LANG are correct
Aikani potkittuani kuukkelia sain tälläisen scriptin tapaisen kasaan:
(Saa käyttää ja jaella omalla vastuulla. Fingelskan saa muuttaa tunnetuksi kieleksi)
# Purges languages, which are not needed:
# After installation this program starts the localepurge program:
apt-get install localepurge
# Set the parameters of it. Use your own head while configuring:
dpkg-reconfigure localepurge
# Locales should be installed default. This is paranoid
apt-get install locales
# This is recommended somewhere, but doesn't work, so forget it:
apt-get install localeconf
# Install Finnish (fi) language pack:
apt-get install language-pack-fi
# Now the error messages are not so simple and you can even get the man pages
# on your screen !
# Recommended somewhere. No influence, but make it still:
locale-gen fi_FI.UTF-8
# THIS IS IT ! This changed the sittuation:
export LC_ALL=fi_FI.UTF-8
# It might be that the broblem might have disappeared with that last command. Who knows.
# In any case now I get automatically rid off those languages which I don't use.