0

Im currently installing (or trying to install) my Autodesk 3d Packages on my new LinuxMint installation.

Im following the Guide for installing Autodesk Maya provided by Autodesk (as found here), but I'm stuck at step 3:

  • Type ./setup and press Enter.

Which returned this:

    gh057@JARVIS ~/Downloads/Maya_2014 $ su -
    Password: 
    JARVIS ~ # ./setup
    -su: ./setup: No such file or directory
    JARVIS ~ # cd /home/gh057/Downloads/Maya_2014
    JARVIS Maya_2014 # ./setup
    -su: ./setup: No such file or directory
    JARVIS Maya_2014 # ./Setup
    -su: ./Setup: Is a directory
    JARVIS Maya_2014 # 
Rui F Ribeiro
  • 56,709
  • 26
  • 150
  • 232
  • Is there a file called setup inside of the Setup directory? – jordanm Jul 22 '13 at 13:54
  • There is a Setup directory (uppercase S) but apparently no file called setup (lowercase S). Does the file setup (lowercase S) actually exist? If so, see http://unix.stackexchange.com/questions/13391/getting-not-found-message-when-running-a-32-bit-binary-on-a-64-bit-system. If not, it simply means that the instructions are wrong. – Gilles 'SO- stop being evil' Jul 22 '13 at 21:32

1 Answers1

1

It appears that you are not alone in running into difficulties installing Autodesk products on linux, as there are dozens of forums with people talking about their experiences.

It appears that the autodesk installation uses packages (.deb) files to help simplify the process.

Basically you need to extract the installation, and find the .deb files then run

sudo dpkg -i foo.deb

A guy named heath wrote a script to do exactly that.

https://gist.github.com/insomniacUNDERSCORElemon/5555214

Update
Make sure to install as root

sudo su -
apt-get install git
cd /tmp
git clone https://gist.github.com/5555214.git autodesk
cd autodesk
chmod +x maya_2014.sh
./maya_2014.sh

The installation will take a long time ( 30+ minutes), and appear to hang at times.

spuder
  • 18,053
  • The script you posted appears to have syntax errors – jordanm Jul 22 '13 at 14:32
  • I updated the answer with the steps I took to install it. When do you get the errors, and what errors are they? – spuder Jul 22 '13 at 15:40
  • I didn't run it, but if [uname -m != x86_64]; then is an obvious syntax error. – jordanm Jul 22 '13 at 15:46
  • Thanks! At least i've got it installed now :) However, there's a new issue: Start Maya Now? yes /usr/autodesk/maya2014-x64/bin/maya.bin: error while loading shared libraries: libtiff.so.3: cannot open shared object file: No such file or directory

    Also running it from the menu won't launch it. :/

    – Nils Diefenbach Jul 22 '13 at 15:54
  • This should solve the 'lib tiff.so.3' library error http://askubuntu.com/questions/44132/how-do-i-install-libtiff-so-3. See the answer by Lekensteyn or the answer by jahid65 – spuder Jul 22 '13 at 16:19
  • ln: failed to create symbolic link ‘/usr/lib/libtiff.so.3’: File exists comes up when I run the command (i used the one for 64bit systems). executing maya via the menu link still does nothing :( – Nils Diefenbach Jul 22 '13 at 17:59
  • I would suggest running ldconfig or logging out and back in. Lastly try linking libtiff.so.4 to libtiff.so.3 ln -s /usr/lib/libtiff.so.3 /usr/lib/libtiff.so.4 and logging out and back in. If that still doesn't solve it, you may want to consider opening a new question. – spuder Jul 22 '13 at 18:16