0

Just installed Ubuntu 18.04.3 and can't launch Gparted nor Krusader. Tried removing and installing from Terminal and App Store, but to no avail. Other apps work fine. Tried installing VLC - it works OK.

I'm new to Linux so I have no clue what the problem might be.

kat
  • 319

2 Answers2

0

Most importantly: Linux is case-sensitive. "gparted" and "Gparted" are not the same program name, and only the first is right.

To see if a package ( which contains a program AND the program's ancillary files) is installed, use the terminal command dpkg -l packagename (dpkg -l gparted). To see a list of the files installed by a package use the terminal command dpkg -L packagename (dpkg -L gparted).

To get from a file on your system back to the package that installed it, use the terminal command dpkg -S filename (dpkg -S /bin/bash or dpkg -S $(type -p bash) ).

waltinator
  • 37,856
0

It seems the fresh install of Ubuntu was missing some Qt5 libraries, which I had to install.

The following post was helpful: “Failed to load platform plugin ”xcb“ ” while launching qt5 app on linux without qt installed

kat
  • 319