mirror of
https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux.git
synced 2025-11-03 03:45:57 +01:00
552 lines
20 KiB
Bash
552 lines
20 KiB
Bash
#!/bin/bash
|
|
|
|
##############################################################################
|
|
# Name: Autodesk Fusion 360 - Installationsskript (Linux)
|
|
# Description: With this file you can install Autodesk Fusion 360 on Linux.
|
|
# Author: Steve Zabka
|
|
# Author URI: https://cryinkfly.com
|
|
# License: MIT
|
|
# Copyright (c) 2020-2021
|
|
# Time/Date: 12:30/02.09.2021
|
|
# Version: 3.8
|
|
##############################################################################
|
|
|
|
# DESCRIPTION
|
|
|
|
# With the help of my script, You get a way to install the Autodesk Fusion 360 on your Linux system.
|
|
# Certain packages and programs that are required will be set up on your system.
|
|
#
|
|
# But it's important to know, that my script only helps You to get the program to run and nothing more!
|
|
#
|
|
# And so, You must to purchase the licenses directly from the manufacturer of the program Autodesk Fusion 360!
|
|
|
|
|
|
############################################################################################################################################################
|
|
# 1. Step: Open a Terminal and run this command: cd Downloads && chmod +x fusion360-install.sh && bash fusion360-install.sh
|
|
# 2. Step: The installation will now start and set up everything for you automatically.
|
|
############################################################################################################################################################
|
|
|
|
function requirement-check {
|
|
echo "Find your correct package manager and install the package dialog and wmctrl, what you need for the installation of Autodesk Fusion 360!"
|
|
echo -n "Do you wish to install this package (y/n)?"
|
|
read answer
|
|
if [ "$answer" != "${answer#[Yy]}" ] ;then
|
|
install-requirement &&
|
|
wmctrl -r ':ACTIVE:' -b toggle,fullscreen &&
|
|
check-if-fusion360-exists
|
|
else
|
|
exit;
|
|
fi
|
|
}
|
|
|
|
function install-requirement {
|
|
if VERB="$( which apt-get )" 2> /dev/null; then
|
|
echo "Debian-based"
|
|
sudo apt-get update &&
|
|
sudo apt-get install dialog wmctrl software-properties-common
|
|
elif VERB="$( which dnf )" 2> /dev/null; then
|
|
echo "RedHat-based"
|
|
sudo dnf update &&
|
|
sudo dnf install dialog wmctrl
|
|
elif VERB="$( which pacman )" 2> /dev/null; then
|
|
echo "Arch-based"
|
|
sudo pacman -Sy --needed dialog wmctrl
|
|
elif VERB="$( which zypper )" 2> /dev/null; then
|
|
echo "openSUSE-based"
|
|
su -c 'zypper up && zypper install dialog wmctrl'
|
|
elif VERB="$( which xbps-install )" 2> /dev/null; then
|
|
echo "Void-based"
|
|
sudo xbps-install -Sy dialog wmctrl
|
|
elif VERB="$( which eopkg )" 2> /dev/null; then
|
|
echo "Solus-based"
|
|
sudo eopkg install dialog wmctrl
|
|
elif VERB="$( which emerge )" 2> /dev/null; then
|
|
echo "Gentoo-based"
|
|
sudo emerge -av dev-utils/dialog x11-misc/wmctrl
|
|
else
|
|
echo "I can't find your package manager!"
|
|
exit;
|
|
fi
|
|
}
|
|
|
|
function check-if-fusion360-exists {
|
|
FILE=/$HOME/.local/share/fusion360log/log.txt
|
|
if [ -f "$FILE" ]; then
|
|
welcome-screen-2
|
|
else
|
|
welcome-screen-1
|
|
fi
|
|
}
|
|
|
|
function welcome-screen-1 {
|
|
|
|
HEIGHT=15
|
|
WIDTH=60
|
|
CHOICE_HEIGHT=2
|
|
BACKTITLE="Installation of Autodesk Fusion360 - Version 3.8"
|
|
TITLE="Do you wish to install Autodesk Fusion 360?"
|
|
MENU="Choose one of the following options:"
|
|
|
|
OPTIONS=(1 "Yes"
|
|
2 "No")
|
|
|
|
CHOICE=$(dialog --clear \
|
|
--backtitle "$BACKTITLE" \
|
|
--title "$TITLE" \
|
|
--menu "$MENU" \
|
|
$HEIGHT $WIDTH $CHOICE_HEIGHT \
|
|
"${OPTIONS[@]}" \
|
|
2>&1 >/dev/tty)
|
|
|
|
clear
|
|
case $CHOICE in
|
|
1)
|
|
select_your_os
|
|
;;
|
|
2)
|
|
exit
|
|
;;
|
|
esac
|
|
}
|
|
|
|
function welcome-screen-2 {
|
|
|
|
HEIGHT=15
|
|
WIDTH=180
|
|
CHOICE_HEIGHT=3
|
|
BACKTITLE="Installation of Autodesk Fusion360 - Version 3.8"
|
|
TITLE="This Setup has checked your system for a existing Autodesk Fusion 360 components and it was found that Autodesk Fusion 360 already exists on your system!"
|
|
MENU="Choose one of the following options:"
|
|
|
|
OPTIONS=(1 "New installation of some or all components"
|
|
2 "Update existing installation"
|
|
3 "Uninstall all Autodesk Fusion 360 components")
|
|
|
|
CHOICE=$(dialog --clear \
|
|
--backtitle "$BACKTITLE" \
|
|
--title "$TITLE" \
|
|
--menu "$MENU" \
|
|
$HEIGHT $WIDTH $CHOICE_HEIGHT \
|
|
"${OPTIONS[@]}" \
|
|
2>&1 >/dev/tty)
|
|
|
|
clear
|
|
case $CHOICE in
|
|
1)
|
|
select_your_os
|
|
;;
|
|
2)
|
|
update_autodesk_fusion360_info &&
|
|
update_autodesk_fusion360_select &&
|
|
cd $filename/fusion360download &&
|
|
WINEPREFIX=$filename wine Fusion360installer.exe -p deploy -g -f log.txt --quiet &&
|
|
WINEPREFIX=$filename wine Fusion360installer.exe -p deploy -g -f log.txt --quiet &&
|
|
program_exit
|
|
;;
|
|
3)
|
|
update_autodesk_fusion360_info &&
|
|
update_autodesk_fusion360_select &&
|
|
rmdir "$filename" &&
|
|
program_exit_uninstall
|
|
;;
|
|
esac
|
|
}
|
|
|
|
|
|
function update_autodesk_fusion360_info {
|
|
dialog --title "Make a note of the path to your Autodesk Fusion 360 installation so that you can use it in the next step!" --textbox "/$HOME/TEST.txt" 14 180
|
|
}
|
|
|
|
function update_autodesk_fusion360_select {
|
|
filename=$(dialog --stdout --title "Enter the installation path for Fusion 360:" --backtitle "Installation of Autodesk Fusion360 - Version 3.8" --fselect $HOME/ 14 100)
|
|
}
|
|
|
|
function select_your_os {
|
|
HEIGHT=15
|
|
WIDTH=200
|
|
CHOICE_HEIGHT=10
|
|
BACKTITLE="Installation of Autodesk Fusion360 - Version 3.8"
|
|
TITLE="Select your Linux distribution"
|
|
MENU="Choose one of the following options:"
|
|
|
|
OPTIONS=(1 "Arch Linux, Manjaro Linux, EndeavourOS, ..."
|
|
2 "Debian 10, MX Linux 19.4, Raspberry Pi Desktop, ..."
|
|
3 "Debian 11"
|
|
4 "Fedora 33"
|
|
5 "Fedora 34"
|
|
6 "openSUSE Leap 15.2"
|
|
7 "openSUSE Leap 15.3"
|
|
8 "openSUSE Tumbleweed"
|
|
9 "Red Hat Enterprise Linux 8.x"
|
|
10 "Solus"
|
|
11 "Ubuntu 18.04, Linux Mint 19.x, ..."
|
|
12 "Ubuntu 20.04, Linux Mint 20.x, Pop!_OS 20.04, ..."
|
|
13 "Ubuntu 20.10"
|
|
14 "Ubuntu 21.04, Pop!_OS 21.04, ..."
|
|
15 "Void Linux"
|
|
16 "Gentoo Linux"
|
|
|
|
)
|
|
|
|
CHOICE=$(dialog --clear \
|
|
--backtitle "$BACKTITLE" \
|
|
--title "$TITLE" \
|
|
--menu "$MENU" \
|
|
$HEIGHT $WIDTH $CHOICE_HEIGHT \
|
|
"${OPTIONS[@]}" \
|
|
2>&1 >/dev/tty)
|
|
|
|
clear
|
|
case $CHOICE in
|
|
1)
|
|
|
|
archlinux_1 &&
|
|
select_your_path
|
|
;;
|
|
|
|
2)
|
|
|
|
debian_based_1 &&
|
|
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/debian/ buster main' &&
|
|
debian_based_2 &&
|
|
select_your_path
|
|
;;
|
|
|
|
3)
|
|
|
|
debian_based_1 &&
|
|
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/debian/ bullseye main' &&
|
|
debian_based_2 &&
|
|
select_your_path
|
|
;;
|
|
|
|
4)
|
|
|
|
fedora_based_1 &&
|
|
sudo dnf config-manager --add-repo https://dl.winehq.org/wine-builds/fedora/33/winehq.repo &&
|
|
fedora_based_2 &&
|
|
select_your_path
|
|
;;
|
|
|
|
5)
|
|
|
|
fedora_based_1 &&
|
|
sudo dnf config-manager --add-repo https://dl.winehq.org/wine-builds/fedora/34/winehq.repo &&
|
|
fedora_based_2 &&
|
|
select_your_path
|
|
;;
|
|
|
|
6)
|
|
|
|
su -c 'zypper up && zypper rr https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Leap_15.2/ wine && zypper ar -cfp 95 https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Leap_15.2/ wine && zypper install p7zip-full curl wget wine cabextract' &&
|
|
select_your_path
|
|
;;
|
|
|
|
7)
|
|
|
|
su -c 'zypper up && zypper rr https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Leap_15.3/ wine && zypper ar -cfp 95 https://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Leap_15.3/ wine && zypper install p7zip-full curl wget wine cabextract' &&
|
|
select_your_path
|
|
;;
|
|
|
|
8)
|
|
|
|
su -c 'zypper up && zypper install p7zip-full curl wget wine cabextract' &&
|
|
select_your_path
|
|
;;
|
|
|
|
9)
|
|
|
|
redhat-linux &&
|
|
select_your_path
|
|
;;
|
|
|
|
10)
|
|
|
|
solus-linux &&
|
|
select_your_path
|
|
;;
|
|
|
|
11)
|
|
|
|
debian_based_1 &&
|
|
sudo apt-add-repository -r 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main' &&
|
|
wget -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/Release.key -O Release.key -O- | sudo apt-key add - &&
|
|
sudo apt-add-repository 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/ ./' &&
|
|
debian_based_2 &&
|
|
select_your_path
|
|
;;
|
|
|
|
12)
|
|
|
|
debian_based_1 &&
|
|
sudo add-apt-repository -r 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main' &&
|
|
wget -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_20.04/Release.key -O Release.key -O- | sudo apt-key add - &&
|
|
sudo apt-add-repository 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_20.04/ ./' &&
|
|
debian_based_2 &&
|
|
select_your_path
|
|
;;
|
|
|
|
13)
|
|
|
|
debian_based_1 &&
|
|
sudo add-apt-repository -r 'deb https://dl.winehq.org/wine-builds/ubuntu/ groovy main' &&
|
|
wget -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_20.10/Release.key -O Release.key -O- | sudo apt-key add - &&
|
|
sudo apt-add-repository 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_20.10/ ./' &&
|
|
debian_based_2 &&
|
|
select_your_path
|
|
;;
|
|
|
|
14)
|
|
# Note: This installs the public key to trusted.gpg.d - While this is "acceptable" behaviour it is not best practice.
|
|
# It is infinitely better than using apt-key add though.
|
|
# For more information and for instructions to utalise best practices, see:
|
|
# https://askubuntu.com/questions/1286545/what-commands-exactly-should-replace-the-deprecated-apt-key
|
|
|
|
sudo apt update &&
|
|
sudo apt upgrade &&
|
|
sudo dpkg --add-architecture i386 &&
|
|
mkdir -p /tmp/360 && cd /tmp/360 &&
|
|
wget https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_21.04/Release.key &&
|
|
wget https://dl.winehq.org/wine-builds/winehq.key &&
|
|
gpg --no-default-keyring --keyring ./temp-keyring.gpg --import Release.key &&
|
|
gpg --no-default-keyring --keyring ./temp-keyring.gpg --export --output opensuse-wine.gpg && rm temp-keyring.gpg &&
|
|
gpg --no-default-keyring --keyring ./temp-keyring.gpg --import winehq.key &&
|
|
gpg --no-default-keyring --keyring ./temp-keyring.gpg --export --output winehq.gpg && rm temp-keyring.gpg &&
|
|
sudo mv *.gpg /etc/apt/trusted.gpg.d/ && cd /tmp && sudo rm -rf 360 &&
|
|
echo "deb [signed-by=/etc/apt/trusted.gpg.d/opensuse-wine.gpg] https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_21.04/ ./" | sudo tee -a /etc/apt/sources.list.d/opensuse-wine.list
|
|
sudo add-apt-repository -r 'deb https://dl.winehq.org/wine-builds/ubuntu/ hirsute main' &&
|
|
debian_based_2 &&
|
|
select_your_path
|
|
;;
|
|
|
|
15)
|
|
|
|
void-linux &&
|
|
select_your_path
|
|
;;
|
|
|
|
16)
|
|
gentoo-linux &&
|
|
select_your_path
|
|
;;
|
|
|
|
esac
|
|
}
|
|
|
|
function select_your_path {
|
|
|
|
HEIGHT=15
|
|
WIDTH=200
|
|
CHOICE_HEIGHT=2
|
|
CHOICE_WIDTH=200
|
|
BACKTITLE="Installation of Autodesk Fusion360 - Version 3.8"
|
|
TITLE="Choose setup type"
|
|
MENU="Choose the kind of setup that best suits your needs."
|
|
|
|
OPTIONS=(1 "Standard - Install Autodesk Fusion 360 into your home folder. (/home/YOUR-USERNAME/.wineprefixes/fusion360)"
|
|
2 "Custom - Install Autodesk Fusion 360 to another place.")
|
|
|
|
CHOICE=$(dialog --clear \
|
|
--backtitle "$BACKTITLE" \
|
|
--title "$TITLE" \
|
|
--menu "$MENU" \
|
|
$HEIGHT $WIDTH $CHOICE_HEIGHT \
|
|
"${OPTIONS[@]}" \
|
|
2>&1 >/dev/tty)
|
|
|
|
clear
|
|
case $CHOICE in
|
|
1)
|
|
winetricks-standard
|
|
;;
|
|
2)
|
|
select_your_path_custom &&
|
|
winetricks-custom
|
|
;;
|
|
esac
|
|
}
|
|
|
|
|
|
function select_your_path_custom {
|
|
dialog --backtitle "Installation of Autodesk Fusion360 - Version 3.8" \
|
|
--title "Description - Configure the installation location" \
|
|
--msgbox 'Now you have to determine where you want to install Fusion 360 and then the .fusion360 folder will be created for you automatically. For examlble you can install it on a external usb-drive: /run/media/user/usb-drive/wine/.fusion360 or you install it into your home folder: /home/YOUR-USERNAME/.wineprefixes/fusion360).' 14 200
|
|
|
|
filename=$(dialog --stdout --title "Enter the installation path for Fusion 360:" --backtitle "Installation of Autodesk Fusion360 - Version 3.8" --fselect $HOME/ 14 100)
|
|
}
|
|
|
|
function program_exit {
|
|
dialog --backtitle "Installation of Autodesk Fusion360 - Version 3.8" \
|
|
--title "Autodesk Fusion 360 is completed." \
|
|
--msgbox 'The installation of Autodesk Fusion 360 is completed and you can use it for your projects.' 14 200
|
|
|
|
clear
|
|
exit
|
|
}
|
|
|
|
function program_exit_uninstall {
|
|
dialog --backtitle "Installation of Autodesk Fusion360 - Version 3.8" \
|
|
--title "Uninstalling Autodesk Fusion 360!" \
|
|
--msgbox 'Autodesk Fusion 360 uninstallation is complete!' 14 200
|
|
|
|
clear
|
|
exit
|
|
}
|
|
|
|
function archlinux_1 {
|
|
|
|
HEIGHT=15
|
|
WIDTH=60
|
|
CHOICE_HEIGHT=2
|
|
BACKTITLE="Installation of Autodesk Fusion360 - Version 3.8"
|
|
TITLE="If you have enabled multilib repository?"
|
|
MENU="Choose one of the following options:"
|
|
|
|
OPTIONS=(1 "Yes"
|
|
2 "No")
|
|
|
|
CHOICE=$(dialog --clear \
|
|
--backtitle "$BACKTITLE" \
|
|
--title "$TITLE" \
|
|
--menu "$MENU" \
|
|
$HEIGHT $WIDTH $CHOICE_HEIGHT \
|
|
"${OPTIONS[@]}" \
|
|
2>&1 >/dev/tty)
|
|
|
|
clear
|
|
case $CHOICE in
|
|
1)
|
|
archlinux_2 &&
|
|
select_your_path
|
|
;;
|
|
2)
|
|
sudo echo "[multilib]" >> /etc/pacman.conf &&
|
|
sudo echo "Include = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf &&
|
|
archlinux_2 &&
|
|
select_your_path
|
|
;;
|
|
esac
|
|
}
|
|
|
|
function archlinux_2 {
|
|
sudo pacman -Sy --needed wine wine-mono wine_gecko winetricks p7zip curl cabextract samba ppp
|
|
}
|
|
|
|
function debian_based_1 {
|
|
sudo apt-get update &&
|
|
sudo apt-get upgrade &&
|
|
sudo dpkg --add-architecture i386 &&
|
|
wget -nc https://dl.winehq.org/wine-builds/winehq.key &&
|
|
sudo apt-key add winehq.key
|
|
}
|
|
|
|
function debian_based_2 {
|
|
sudo apt-get update &&
|
|
sudo apt-get upgrade &&
|
|
sudo apt-get install p7zip p7zip-full p7zip-rar curl winbind cabextract wget &&
|
|
sudo apt-get install --install-recommends winehq-staging
|
|
}
|
|
|
|
function fedora_based_1 {
|
|
sudo dnf update &&
|
|
sudo dnf upgrade &&
|
|
sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
|
}
|
|
|
|
function fedora_based_2 {
|
|
sudo dnf install p7zip p7zip-plugins curl wget wine cabextract
|
|
}
|
|
|
|
function redhat-linux {
|
|
sudo subscription-manager repos --enable codeready-builder-for-rhel-8-x86_64-rpms &&
|
|
sudo rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm &&
|
|
sudo dnf upgrade &&
|
|
sudo dnf install wine
|
|
}
|
|
|
|
function solus-linux {
|
|
sudo eopkg install wine winetricks p7zip curl cabextract samba ppp
|
|
}
|
|
|
|
function void-linux {
|
|
sudo xbps-install -Sy wine wine-mono wine-gecko winetricks p7zip curl cabextract samba ppp
|
|
}
|
|
|
|
function gentoo-linux {
|
|
sudo emerge -av virtual/wine app-emulation/winetricks app-emulation/wine-mono app-emulation/wine-gecko app-arch/p7zip app-arch/cabextract net-misc/curl net-fs/samba net-dialup/ppp
|
|
}
|
|
|
|
function winetricks-standard {
|
|
clear
|
|
mkdir -p /home/$USER/.wineprefixes/fusion360 &&
|
|
cd /home/$USER/.wineprefixes/fusion360 &&
|
|
wget -N https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks &&
|
|
chmod +x winetricks &&
|
|
WINEPREFIX=/home/$USER/.wineprefixes/fusion360 sh winetricks -q corefonts cjkfonts msxml4 msxml6 vcrun2017 fontsmooth=rgb win8 &&
|
|
# We must install cjkfonts again then sometimes it doesn't work the first time!
|
|
WINEPREFIX=/home/$USER/.wineprefixes/fusion360 sh winetricks -q cjkfonts &&
|
|
mkdir -p fusion360download &&
|
|
cd fusion360download &&
|
|
wget https://dl.appstreaming.autodesk.com/production/installers/Fusion%20360%20Admin%20Install.exe -O Fusion360installer.exe &&
|
|
WINEPREFIX=/home/$USER/.wineprefixes/fusion360 wine Fusion360installer.exe -p deploy -g -f log.txt --quiet &&
|
|
WINEPREFIX=/home/$USER/.wineprefixes/fusion360 wine Fusion360installer.exe -p deploy -g -f log.txt --quiet &&
|
|
mkdir -p "/home/$USER/.wineprefixes/fusion360/drive_c/users/$USER/AppData/Roaming/Autodesk/Neutron Platform" &&
|
|
cd "/home/$USER/.wineprefixes/fusion360/drive_c/users/$USER/AppData/Roaming/Autodesk/Neutron Platform" &&
|
|
mkdir -p Options &&
|
|
cd Options &&
|
|
wget -N https://raw.githubusercontent.com/cryinkfly/Fusion-360---Linux-Wine-Version-/main/files/NMachineSpecificOptions.xml &&
|
|
# Because the location varies depending on the Linux distro!
|
|
mkdir -p "/home/$USER/.wineprefixes/fusion360/drive_c/users/$USER/Application Data/Autodesk/Neutron Platform" &&
|
|
cd "/home/$USER/.wineprefixes/fusion360/drive_c/users/$USER/Application Data/Autodesk/Neutron Platform" &&
|
|
mkdir -p Options &&
|
|
cd Options &&
|
|
wget -N https://raw.githubusercontent.com/cryinkfly/Fusion-360---Linux-Wine-Version-/main/files/NMachineSpecificOptions.xml &&
|
|
#Set up the program launcher for you!
|
|
cd "/$HOME/.local/share/applications" &&
|
|
wget -N https://raw.githubusercontent.com/cryinkfly/Fusion-360---Linux-Wine-Version-/main/files/Autodesk%20Fusion%20360.desktop
|
|
mkdir -p "/$HOME/.local/share/fusion360log" &&
|
|
cd "/$HOME/.local/share/fusion360log" &&
|
|
echo "/home/$USER/.wineprefixes/fusion360" > log.txt &&
|
|
program_exit
|
|
}
|
|
|
|
function winetricks-custom {
|
|
clear
|
|
mkdir -p $filename &&
|
|
cd $filename &&
|
|
wget -N https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks &&
|
|
chmod +x winetricks &&
|
|
WINEPREFIX=$filename sh winetricks -q corefonts cjkfonts msxml4 msxml6 vcrun2017 fontsmooth=rgb win8 &&
|
|
# We must install cjkfonts again then sometimes it doesn't work the first time!
|
|
WINEPREFIX=$filename sh winetricks -q cjkfonts &&
|
|
mkdir -p fusion360download &&
|
|
cd fusion360download &&
|
|
wget https://dl.appstreaming.autodesk.com/production/installers/Fusion%20360%20Admin%20Install.exe -O Fusion360installer.exe &&
|
|
WINEPREFIX=$filename wine Fusion360installer.exe -p deploy -g -f log.txt --quiet &&
|
|
WINEPREFIX=$filename wine Fusion360installer.exe -p deploy -g -f log.txt --quiet &&
|
|
mkdir -p "$filename/drive_c/users/$USER/AppData/Roaming/Autodesk/Neutron Platform" &&
|
|
cd "$filename/drive_c/users/$USER/AppData/Roaming/Autodesk/Neutron Platform" &&
|
|
mkdir -p Options &&
|
|
cd Options &&
|
|
wget -N https://raw.githubusercontent.com/cryinkfly/Fusion-360---Linux-Wine-Version-/main/files/NMachineSpecificOptions.xml &&
|
|
# Because the location varies depending on the Linux distro!
|
|
mkdir -p "$filename/drive_c/users/$USER/Application Data/Autodesk/Neutron Platform" &&
|
|
cd "$filename/drive_c/users/$USER/Application Data/Autodesk/Neutron Platform" &&
|
|
mkdir -p Options &&
|
|
cd Options &&
|
|
wget -N https://raw.githubusercontent.com/cryinkfly/Fusion-360---Linux-Wine-Version-/main/files/NMachineSpecificOptions.xml &&
|
|
mkdir -p "/$HOME/.local/share/fusion360log" &&
|
|
cd "/$HOME/.local/share/fusion360log" &&
|
|
echo "$filename" > log.txt &&
|
|
program_exit
|
|
}
|
|
|
|
# ---------------------------------------------------------------------
|
|
export LC_ALL=en_US.UTF-8
|
|
export LANG=en_US.UTF-8
|
|
export LANGUAGE=en_US.UTF-8
|
|
|
|
clear
|
|
requirement-check
|
|
|