Document improvement suggestion for installation on Ubuntu

Install QGC on Ubutu

This

sudo apt install libxcb-xinerama0 libxkbcommon-x11-0 libxcb-cursor0 -y

gives an error (Ubuntu 22.04)
E: Unable to locate package libxcb-cursor0
Should be changed to this

sudo apt install libxcb-xinerama0 libxkbcommon-x11-0 libxcb-cursor-dev -y

see issue https://stackoverflow.com/questions/77725761/from-6-5-0-xcb-cursor0-or-libxcb-cursor0-is-needed-to-load-the-qt-xcb-platform

This is related to loading the QT plugin platform which is the QGC depends on also from QT documentation it says It provides the basic functionality needed by Qt GUI and Qt Widgets to run against X11.

Thanks for the note.

Do you feel like making a pull request and fixing it?

1 Like

Yes done see below

1 Like

Great, thanks for that!