Shihui Guo

Install Maya 2013 on Ubuntu 12.04

Not sure how many persons are facing this trick, but if you go to Autodesk Education Community, select Maya for downloading, you would find the operating systems they support are only Mac and Windows. Want to get Maya running on linux?

So here is the way, it works on Ubuntu 12.04 for Maya 2013, but basically it should work for any other version of Maya and other Linux distros (Centos definitely).

I have managed to hack a script here

First, make a folder for downloading and processing the Maya package, such as:


mkdir ~/mayaInstall
cd ~/mayaInstall

download my script, and put it in the folder, make it executable and run


chmod +x maya4Ubuntu.sh
./maya4Ubuntu.sh

Theoretically, you only need to answer some pop-up message to make the magic happen. In case some of you are not familiar with that, some information you will need:

- license: student license still works, just register in the Autodesk education community, and you got a student license number.
- at the end of the installation, there are some messages poping up, and tell you:

Finally, in order to have Composite run properly, make sure you make the
following changes.  If you are unsure about the procedure, please
contact your sys admin.

#su - root

Add the following line at the end, after the #@student line.

#vi /etc/security/limits.conf
#@student      -       maxlogins  4
*              soft    nofile     65536
*              hard    nofile     65536

#reboot

Once the machine has rebooted, login as root
# su - root
# tcsh
# limit
descriptors shall be set at 65536

Just do exactly what it says, and your maya should be working now!

Screenshot from 2013-08-11 16:29:34

Credit:

The original script is from https://gist.github.com/daevid/4966741. I made some changes, including:

- not required root permission for the whole script, only for commands inside the script wherever needed. (This will not mess up your filesystem)

- remove some commands for defining and switching back and forth, this annoys me a bit and really got some limitations.

点击查看评论