libui_base.so is provided by Chromium itself, it exists at /usr/lib/chromium-browser/libs.
To fix the problem, we need to add this path to LD_LIBRARY_PATH. Or I created a chrome_lib.conf file in a folder /etc/ld.so.conf.d/containing just this path.
/etc/ld.so.conf.d/chrome_lib.conf:
/usr/lib/chromium-browser/libs
Then run $. sudo ldconfig
After that, the chrome reverse works successfully.
source
share