perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = "en_US.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C")
You have to fix LC_LOCALE and choose one of two options:
Hi @DovaMerith:
The main error is:
```
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = "en_US.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C")
```
You have to fix `LC_LOCALE` and choose one of two options:
```
export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
```
Reboot.
Or
```
sudo nano /etc/locale.gen
```
Put in the file:
```
en_US.UTF-8 UTF-8
```
And run the command `sudo locale-gen`. Reboot.
I cant access my Gitea install with this script. this is the output from the terminal
Hi @DovaMerith:
The main error is:
You have to fix
LC_LOCALE
and choose one of two options:Reboot.
Or
Put in the file:
And run the command
sudo locale-gen
. Reboot.