EVP_CIPHER_CTX_init Maya 2019 Ubuntu 19.04

EVP_CIPHER_CTX_init Maya 2019 Ubuntu 19.04

尝试使用此方法在 Ubuntu 19.04 上安装 Maya 2019 后:如何使用 NVIDIA GPU 在 Ubuntu 19.04 上安装 Autodesk Maya 2019 - Linux 提示

当我启动 Maya 时,应用程序在开始帧处停止。它给了我这种类型的错误:

/usr/autodesk/maya2019/bin/maya.bin: symbol lookup error: /usr/autodesk/maya2019/bin/../lib/libOGSDeviceOGL4-16.so: undefined symbol: EVP_CIPHER_CTX_init

我尝试了不同的此网站提供的解决方案对于早期版本,并查看在 Autodesk 论坛上发帖但失败了。我无法启动该软件。

我怎样才能成功运行它?

答案1

谢谢你的回答,

我最终给 linux hint 帖子的所有者发了一封电子邮件,他告诉我删除 libssl.so.10,就像 Autdsk 员工在他们的论坛上建议的那样:

论坛

我试过了(显然将 maya2017 改为 2019),什么也没发生。和以前一样的错误。

所以我决定删除“libOGSDeviceOGL4-16.so”,因为它可能是解决方案的一部分。而且...

玛雅开始了!

但是现在色彩系统/图形设备出现了问题(即使渲染没有问题)。

VP2 Error : Failed to initialize graphics device.
Error: The GPU adaptor of the transform to finalize is null
Error: Failed to apply color management settings on file open: Failed to finalize the color transform..
Error: The GPU adaptor of the transform to finalize is null
Error: Failed to finalize the color transform.
Unable to execute igInitialize.mel.Unable to execute xgen.mel.
API error detected in /local/S/Maya_2019_DI/src/Maya/src/Type/pluginMain.cpp at line 163
: (kFailure): Unexpected Internal Failure

API error detected in plugins/mtoa/extension/ExtensionsManager.cpp at line 655
: (kFailure): Unexpected Internal Failure

API error detected in plugins/mtoa/extension/ExtensionsManager.cpp at line 655
: (kFailure): Unexpected Internal Failure

至少我可以使用该软件...我将在 lib 文件夹中添加 libssl.so.10 以查看它是否会改变其他内容......

答案2

下载提供 libssl.so.10 的 RPM 文件,然后使用 alien 工具将其转换为 .deb 文件并安装。然后执行ln -s file_A file_B

只需一步一步来:

wget https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/32/Everything/x86_64/os/Packages/c/compat-openssl10-1.0.2o-9.fc32.x86_64.rpm
sudo apt install -y alien elfutils
sudo alien -cv *.rpm
sudo dpkg -i *.deb
sudo ln -s /usr/lib64/libcrypto.so.10 /usr/autodesk/maya2019/lib/libcrypto.so.10
sudo ln -s /usr/lib64/libssl.so.10 /usr/lib/x86_64-linux-gnu/libssl.so.10

答案3

  1. 下载提供libssl.so.10的RPM文件: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/32/Everything/x86_64/os/Packages/c/compat-openssl10-1.0.2o-9.fc32.x86_64.rpm

  2. 使用alien将其转换为DEB文件,然后安装

  3. sudo ln -s /usr/lib64/libcrypto.so.10 /usr/autodesk/maya2019/lib/libcrypto.so.10
    sudo ln -s /usr/lib64/libssl.so.10 /usr/lib/x86_64-linux-gnu/libssl.so.10
    
  4. 完毕

相关内容