Package Details: maya 2026.1-1

Git Clone URL: https://aur.archlinux.org/maya.git (read-only, click to copy)
Package Base: maya
Description: Autodesk Maya 3D Animation, Modelling, Simulation and Rendering Software
Upstream URL: http://www.autodesk.com/products/maya/overview
Keywords: 3d Autodesk Maya
Licenses: custom
Submitter: aquarius
Maintainer: meepzh (ttc0419, aquarius)
Last Packager: meepzh
Votes: 20
Popularity: 0.000022
First Submitted: 2016-07-25 19:14 (UTC)
Last Updated: 2025-06-06 03:41 (UTC)

Sources (2)

Pinned Comments

meepzh commented on 2022-04-08 22:36 (UTC) (edited on 2025-06-10 05:09 (UTC) by meepzh)

Many thanks to ttc0419 for getting this set up and for writing these instructions originally. Many thanks to jimmy_christensenMSURY for fixing the Maya 2025+ licensing.

Installation Instructions:

Go to your Autodesk account Products and Services and save the Linux tgz file to any location of your choice. You will also need v1.15 of the Autodesk Identity Manager from Product Updates.

Extract the tgz files to any location of your choice.

Maya is now split into several packages as it is for the official rpm installation. You will need the following files from the extracted tgz files to build some other packages as well:

  1. (required) Packages/adlmapps*.rpm to build adlmapps
  2. (required) Packages/adskidentitymanager*.rpm to build adskidentitymanager
  3. (required) Packages/adsklicensing*.rpm to build adsklicensing
  4. (required) Packages/Maya*.rpm to build this package
  5. (optional) Packages/package.zip to build maya-arnold
  6. (optional) Packages/Bifrost*.rpm to build maya-bifrost
  7. (optional) Packages/AdobeSubstance3DforMaya*.rpm to build maya-substance
  8. (optional) Packages/MayaUSD*.rpm to build maya-usd-bin, if you don't want to download directly from GitHub
  9. (optional) Packages/LookdevX.rpm to build maya-lookdevx

Packages 1 and 3 are required to use Maya and 5 to 9 are plugins that can be installed when needed.

You will need to move the rpm files to the directory containing the corresponding package's PKGBUILD file. Please refer to the AUR wiki for further installation details, since AUR helpers may or may not work with this package.

After installation, you may wish to enable the Autodesk Licensing service with systemctl enable adsklicensing.service. This service is started automatically one time when installing and removing this package.

Note that the install file will automatically register and deregister Maya with the licensing service if you are using the adsklicensing package. You may need to restart the adsklicensing service and reinstall Maya if adsklicensing was upgraded and running at the same time.

Launch Maya and log into your Autodesk account or enter your product serial to check out a license. Note that Wayland is currently not supported by the licensing software.

Please note that the Maya executable is patched to launch with the --single-process flag to address launch issues with the Application Home. You may try to opt out of this patch if this does not present an issue for you.

Troubleshooting:

If you are having the following font error, Failed trying to load font : -*-helvetica-bold-r-normal-*-11-*-*-*-*-*-iso8859-1 //, first try the Autodesk recommended commands with your normal permissions.

xset +fp /usr/share/fonts/100dpi
xset +fp /usr/share/fonts/75dpi
xset fp rehash

(source)

If you are still seeing font errors, you can try one or more of the following:

  1. Install xorg-mkfontscale and run mkfontscale in /usr/share/fonts. Then re-run the xset commands above.
  2. Try running the xset commands with superuser permissions.
  3. Try enabling and generating the following locales: en_GB ISO-8859-1 en_US ISO-8859-1

If you are having licensing errors, you can refer to this comment/forum post by mac666er recommending you to only use the en_US.UTF-8 locale. Or you may need to set a different default browser as Tellik experienced.

If your launch process hangs at the OpenCL initialization, you may wish to check for OpenCL conflicts as mentioned in this comment by TheSunCat. You may also need to rename/delete the intel-openapi icd file in /etc/OpenCL/vendors as mentioned here.

If you see a black screen, check that Wayland is disabled: https://forums.autodesk.com/t5/maya-forum/maya-2025-2026-on-linux/td-p/13617041

Cheers

Latest Comments

« First ‹ Previous 1 .. 13 14 15 16 17 18 19 Next › Last »

Scimmia commented on 2016-11-22 03:07 (UTC)

QuartzDragon, also, all of the copying and linking you're doing in the install script should be done in the PKGBUILD. These files need to be tracked by pacman.

Scimmia commented on 2016-11-22 03:05 (UTC)

QuartzDragon, your PKGBUILD looks much better, but please get rid of rpmextract. makepkg already uses bsdtar, and it will extract rpms just fine without the useless wrapper script (rpmextact.sh just calls bsdtar anyway).

HashFall commented on 2016-11-20 15:07 (UTC) (edited on 2016-11-20 17:33 (UTC) by HashFall)

Thanks @QuartzDragon and @csaez, it's working with the 2017 version. I had to add this to work: LC_ALL=C // Fixes the "Singular matrix, no inverse" Error MAYA_DISABLE_CIP=1 Updated .desktop file: [Desktop Entry] Name=Autodesk Maya 2017 GenericName=Maya Comment=3D modeling, animation, rendering and post-production Keywords=3d;cg;modeling;animation;painting;sculpting;texturing;rendering;render engine;python; Exec=/usr/bin/env LC_ALL=C /usr/bin/maya # Setting LC_ALL=C Icon=/usr/autodesk/maya2017/icons/mayaico.png Terminal=true # Terminal=false was causing my maya to crash on splash Type=Application Categories=Graphics;3DGraphics;

csaez commented on 2016-11-18 15:27 (UTC)

@QuartzDragon MAYA_DISABLE_CIP=1 disables the Customer Involvement Program (aka telemetry), I've no idea why it crashes on me but I saw a comment warning about it a few messages back and it totally fixed it. My desktop file looks like this, it refers to maya 2017 but you can adjust the paths to whatever makes sense (/usr/share/applications/maya.desktop). [Desktop Entry] Name=Autodesk Maya 2017 GenericName=Maya Comment=3D modeling, animation, rendering and post-production Keywords=3d;cg;modeling;animation;painting;sculpting;texturing;rendering;render engine;python; Exec=/usr/autodesk/maya2017/bin/maya Icon=/usr/autodesk/maya2017/icons/mayaico.png Terminal=false Type=Application Categories=Graphics;3DGraphics; Cheers!

QuartzDragon commented on 2016-11-18 06:11 (UTC) (edited on 2016-11-18 06:11 (UTC) by QuartzDragon)

@csaes Odd, I don't have to set the variable for Maya to run. What does it do? Also, can share the .desktop file you created?

csaez commented on 2016-11-18 02:29 (UTC) (edited on 2016-11-18 04:08 (UTC) by csaez)

Thanks QuartzDragon! It worked great, I had to install a few extra things in order to run it, but your package handled most of the installation. Missing system dependencies: - gamin - audiofile - e2fsprogs-libs More on this here: https://knowledge.autodesk.com/support/maya/troubleshooting/caas/CloudHelp/cloudhelp/2016/ENU/Installation-Maya/files/GUID-D2B5433C-E0D2-421B-9BD8-24FED217FD7F-htm.html Fonts (msfonts alternatives) - xorg-fonts-75dpi - xorg-fonts-100dpi - xorg-fonts-misc I also had to set MAYA_DISABLE_CIP=1 in order to run it (otherwise it segfaults on the splash screen) and I added a .desktop file for convenience. I hope this helps someone else trying to get Maya working on arch, Cheers!

QuartzDragon commented on 2016-11-10 12:09 (UTC) (edited on 2016-11-13 00:33 (UTC) by QuartzDragon)

For those of you waiting for an update to this package, and want a working and extensively tested PKGBUILD for Maya 2017 Update 1 that just works out of the box without much configuration, in the meanwhile, use these: PKGBUILD: https://paste.kde.org/peeik3fxd maya.install: https://paste.kde.org/pbro1vkcc Please tell me if anything needs fixing. :)

MD5HashBrowns commented on 2016-10-30 00:19 (UTC)

@th3od0re If I comment out those lines, it builds fine. But I can't figure out how you activated Maya. There's no /opt/Autodesk/MayaSetup without those lines of code. I don't know another way to activate besides running ./MayaSetup. So how did you manage to start Maya without "Segmentation Fault (core dumped)"?

<deleted-account> commented on 2016-10-18 20:14 (UTC)

After commenting out # install "$pkgdir"/opt/Autodesk/MayaSetup # rsync -av --exclude='*.rpm' ./ "$pkgdir"/opt/Autodesk/MayaSetup i changed(line 31): mv "$pkgdir"/usr/local/bin/maya "$pkgdir"/usr/local/bin/oriMaya to: mv "$pkgdir"/usr/autodesk/maya2016/bin/maya2016 "$pkgdir"/usr/autodesk/maya2016/bin/oriMaya and(line 33) cp "$srcdir"/maya_start.sh "$pkgdir"/usr/local/bin/maya to: cp "$srcdir"/maya_start.sh "$pkgdir"/usr/autodesk/maya2016/bin/maya and it worked