Microsoft Teams (Application)
Jump to navigation
Jump to search
Microsoft Teams
Install
# shared/opt install schema v1.3.1 su - #### as root #### # dependencies apt-get -qq -y install wget coreutils findutils apt-get -qq -y install tar xz-utils binutils # binary SOFTWARE_PATH="/home/shared/opt/software" NAME="microsoft-teams" VERSION="1.3.00.16851" URL="https://packages.microsoft.com/repos/ms-teams/pool/main/t/teams/teams_${VERSION}_amd64.deb" umask 0027 mkdir -p "${SOFTWARE_PATH}/tmp/${NAME}_${VERSION}" cd "${SOFTWARE_PATH}/tmp" wget -c --no-check-certificate "${URL}" ar -x "teams_${VERSION}_amd64.deb" && tar -xJf data.tar.xz -C "${NAME}_${VERSION}" 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="microsoft-teams" nice -3 "${SOFTWARE_PATH}/${NAME}/usr/bin/teams"