The popular open-source contract for web designers and developers by Stuff & Nonsense
- Originally published: 23/12/2008
- Revised date: 15/12/2013
- Original post
# Installing Maya 2015 SP6 on Linux Mint 18.1 Serena with Student License | |
# This should work with later versions of Maya or different versions of Ubuntu [based] operating systems with a few changes. | |
# Don't run this as a script, instead copy and paste each line into your terminal | |
# Download link is from here: https://knowledge.autodesk.com/support/maya/downloads/caas/downloads/content/autodesk-maya-2015-service-pack-6.html | |
mkdir ~/maya2015_setup | |
cd ~/maya2015_setup |
# Download and install BlueZ 5.43 and libreadline7 packages | |
wget http://mirrors.kernel.org/ubuntu/pool/main/r/readline/libreadline7_7.0-0ubuntu2_amd64.deb | |
wget http://ftp.debian.org/debian/pool/main/b/bluez/bluez_5.43-1_amd64.deb | |
sudo dpkg -i libreadline7_7.0-0ubuntu2_amd64.deb | |
sudo dpkg -i bluez_5.43-1_amd64.deb | |
# Restart system or BlueZ service | |
# Enable chrome://flags/#enable-experimental-web-platform-features and restart Chrome |
function deleteSavedItems() { | |
var query = document.querySelectorAll("#sc-saved-cart input[value=Delete]") | |
if (query.length) { | |
query[0].click(); | |
} | |
if (query.length > 1) { | |
setTimeout(deleteSavedItems,100); | |
} | |
else { | |
console.log('Finished'); |
#References: | |
#http://forums.autodesk.com/t5/installation-licensing/installing-maya-on-ubuntu/td-p/4905036 | |
#http://askubuntu.com/questions/392806/installing-maya-on-ubuntu-linux | |
#https://gist.github.com/insomniacUNDERSCORElemon/5555214 | |
#http://nealbuerger.com/2013/05/ubuntu-13-04-maya-2014-install-script/ | |
#http://www.nkoubi.com/blog/tutorial/how-to-install-autodesk-maya-2011-on-debian-ubuntu/ | |
#http://help.autodesk.com/view/MAYAUL/2015/ENU/?guid=GUID-E7E054E1-0E32-4B3C-88F9-BF820EB45BE5 | |
#http://www.andrewhazelden.com/blog/2014/10/autodesk-nlm-licensing-issues-with-maya-2015-and-max-2015/ |