Intellij (Application)
Jump to navigation
Jump to search
Install
# shared/opt install schema v1.3.1 #### cleanup rm -rf ~/.IntelliJIdea* rm -rf ~/.java/.userPrefs/jetbrains/idea #### install su - #### as root #### # dependencies apt-get -qq -y install wget coreutils findutils apt-get -qq -y install tar gzip # binary SOFTWARE_PATH="/home/shared/opt/software" NAME="intellij" VERSION="2020.2.1-no-jbr" URL="https://download-cf.jetbrains.com/idea/ideaIU-${VERSION}.tar.gz" umask 0027 mkdir -p "${SOFTWARE_PATH}/tmp/${NAME}_${VERSION}" cd "${SOFTWARE_PATH}/tmp" wget -c --no-check-certificate "${URL}" tar -xzf "ideaIU-${VERSION}.tar.gz" && mv "idea-IU-"*/* "${NAME}_${VERSION}" && rmdir "idea-IU-"*/ cd "${SOFTWARE_PATH}" chown -R root:users "tmp" find "tmp" -type d -exec chmod a-s,u+rwx,g+rx,g-w,o-rwx {} \; find "tmp" -type f -exec chmod a-s,u+rw,g+r,g-w,o-rwx {} \; mv "tmp/${NAME}_${VERSION}" "${NAME}_${VERSION}" rm -rf tmp ln -s -f -T "${NAME}_${VERSION}" "${NAME}" exit #### as final user #### SOFTWARE_PATH="/home/shared/opt/software" NAME="intellij" "${SOFTWARE_PATH}"/${NAME}/bin/idea.sh