29

I'm using Kubuntu 17.10. Always after login, the notification below pops up. When I click it, it asks for my password and wants to install or remove packages – but without telling me what packages. I already searched the internet but couldn't find a way to identify what packages are needed. The standard apt upgrade is not affecting this popup. What program is causing this popup, and how can I see which packages it wants to install?

Thanks!

enter image description here

2 Answers 2

51

The missing packages can be seen if installing the full language support in Terminal:

sudo apt install $(check-language-support) 
3
  • 4
    Awesome! That seem to do the trick. So check-language-support is a bit misleading here, it should be named check-missing-language-package or at least give a short hint that it outputs missing files. Anyway, thanks! Commented Feb 1, 2018 at 8:32
  • 1
    @Grimm you're right about command name, even manpage says at beginning "check-language-support - returns the list of missing packages in order to provide a complete language environment". Commented Jun 7, 2018 at 8:32
  • 3
    After re-installing my KDE neon system with the current ISO image (based on Ubuntu 22.04), check-language-support was not available, but could be installed with sudo apt install language-selector-common. Commented Nov 2, 2022 at 6:18
2

If you have problem with missing packages use --ignore-missing:

sudo apt-get -y install --ignore-missing $(check-language-support) 

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.