我在Ubuntu20.04上安装Maya 2020有一些问题。当Maya安装时,控制台中的许可和升级出现了问题。怎么一回事?当试图逃跑的时候玛雅就不会开始了。当尝试使用命令从控制台启动时:
/usr/autodesk/maya2020/bin/maya
我看到的是这样的东西:
A licensing error occurred that Autodesk systems were not able to handle for you. Please contact Autodesk Customer Support for help in resolving this error.
adlsdkAuthorize returned with error code: ADLSDK_STATUS_ADLS_NOT_FOUND
The default location for log files to help diagnose the issue is: /usr/tmp有趣的是,路径/opt/Autodesk/AdskLicensingService并不存在!即使我做了他们在Autodesk网站上写的每件事!当我想要修复它的时候,我损坏了一些东西。在sudo apt-get upgrade中,我看到这样的东西(控制台将用波兰语):
Czytanie list pakietów… Gotowe
Budowanie drzewa zależności
Odczyt informacji o stanie… Gotowe
Należy uruchomić “apt --fix-broken install”, aby je naprawić.
Następujące pakiety mają niespełnione zależności:
libc6 : Poleca: libnss-nis ale nie da się go zainstalować
Poleca: libnss-nisplus ale nie da się go zainstalować
Narusza zależności: libc6:i386 (!= 2.31-9) ale 2.31-0ubuntu9.2 jest zainstalowany
libc6:i386 : Narusza zależności: libc6 (!= 2.31-0ubuntu9.2) ale 2.31-9 jest zainstalowany
libc6-dbg : Wymaga: libc6 (= 2.31-0ubuntu9.2) ale 2.31-9 jest zainstalowany
libc6-dev : Wymaga: libc6 (= 2.31-0ubuntu9.2) ale 2.31-9 jest zainstalowany
libc6-i386 : Wymaga: libc6 (= 2.31-0ubuntu9.2) ale 2.31-9 jest zainstalowany
E: Niespełnione zależności. Proszę spróbować wykonać “apt --fix-broken install” bez pakietów (lub podać rozwiązanie).我马上就会提到我正在做apt --fix-broken install,但是每次都会弹出这条消息。请帮帮忙。提前谢谢你。
发布于 2021-08-06 12:28:39
关于在ubuntu上安装maya的“正式”说明如下:https://knowledge.autodesk.com/support/maya/learn-explore/caas/simplecontent/content/installing-maya-2020-ubuntu.html
考虑到安装中不存在路径/opt/Autodesk/AdskLicensingService,可能缺少的步骤如下(无耻地复制粘贴)
install the licensing packages: adlmapps, adlmflexnetserveripv6, adlmflexnetclient, and adsklicensing.
Verify that the licensing service is running.
sudo systemctl status adsklicensing
If the licensing service is not running:
Start it using this command:
/opt/Autodesk/AdskLicensingService --run
Verify again that the service is running.
If it is still not running, set up the licensing service manually:
sudo getent group adsklic &>/dev/null || sudo groupadd adsklic
sudo id -u adsklic &>/dev/null || sudo useradd -M -r -g adsklic adsklic -d / -s /usr/sbin/nologin
sudo ln -sf /opt/Autodesk/AdskLicensing/9.2.1.2399/AdskLicensingService/AdskLicensingService /usr/bin/AdskLicensingService
sudo mkdir /usr/lib/systemd/system
sudo cp -f /opt/Autodesk/AdskLicensing/9.2.1.2399/AdskLicensingService/adsklicensing.el7.service /usr/lib/systemd/system/adsklicensing.service
sudo chmod 644 /usr/lib/systemd/system/adsklicensing.service
sudo systemctl daemon-reload
sudo systemctl enable adsklicensing –quiet
sudo systemctl start adsklicensinghttps://askubuntu.com/questions/1317324
复制相似问题