2

While I update my device using software updater, I am getting following screen and then the updater paused in following screen:

enter image description here

Here is my locale lists, i.e. list which will display after execute locale command:

enter image description here

Here is a output of locale -a

enter image description here

Do anyone have idea how to fix it?

I have already tried the answers given over this stackoverflow question, but it didn't worked for me! :(

Edit:

After applying changes suggested in answer I am getting following error with my update-manager:

enter image description here

Any help would be appreciated! Thanks in advance.

Rishi Pithadiya
  • 135
  • 1
  • 5

2 Answers2

2

Looks like the UTF-8 locale en_IN has not been generated on your system. So then generate it:

sudo locale-gen en_IN

Edit:

The error messages reveal a bug in Software Updater. A workaround to get rid of the error messages is to change LANG to "en_IN.UTF-8".

sudo update-locale LANG=en_IN.UTF-8

Edit II:

To fix the new problem, try these commands:

sudo rm -f /var/lib/apt/lists/*
sudo apt-get update
Gunnar Hjalmarsson
  • 33,540
  • 3
  • 64
  • 94
0

Change /etc/default/locale settings to en_IT.UTF-8:

LANG="en_IT.UTF-8"
LC_NUMERIC="en_IT.UTF-8"
LC_TIME="en_IT.UTF-8"
LC_MONETARY="en_IT.UTF-8"
LC_PAPER="en_IT.UTF-8"
LC_NAME="en_IT.UTF-8"
LC_ADDRESS="en_IT.UTF-8"
LC_TELEPHONE="en_IT.UTF-8"
LC_MEASUREMENT="en_IT.UTF-8"
LC_IDENTIFICATION="en_IT.UTF-8"
LANGUAGE="en_IT:en"
Gea-Suan Lin
  • 406
  • 4
  • 7