|
发表于 2023-1-19 22:31:48
|
显示全部楼层
Since "/lib64/libGLU.so.1" must be in the OS installation path, it is necessary to understand that the package containing it is missing from the Ubuntu OS installation process.
Therefore, " libGLU.so" shared library is not a RedHawks application component.
You need to find library package which has libGLU.so.1 using below command.
% yum whatprovides /lib64/libGLU.so.1
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
server 5230/5230
mesa-libGLU-9.0.0-4.el7.x86_64 : Mesa libGLU library
Repo : @anaconda/7.9
Matched from:
Filename : /lib64/libGLU.so.1
So you need to install it.
-- Redhat, CentOS
case 1. find "mesa-libGLU-9.0.0-4.el7.x86_64.rpm" and install it by rpm command.
% rpm -ivh mesa-libGLU-9.0.0-4.el7.x86_64.rpm
case 2. If it has dependency for "mesa-libGLU-9.0.0-4.el7.x86_64.rpm" , you need to install all the libraries dependent on this package, proceed with the installation as follows.
% yum install mesa-libGLU-9.0.0-4.el7.x86_64
-- Package install on Ubuntu ( Ref: https://zoomadmin.com/HowToInstall/UbuntuPackage/libglu1-mesa )
% sudo apt-get install -y libglu1-mesa
|
|