Igel Teamviewer

From Michael's Information Zone
Revision as of 15:31, 3 August 2020 by Michael.mast (talk | contribs)
Jump to navigation Jump to search
wget https://download.teamviewer.com/download/version_11x/teamviewer_qs.tar.gz
tar -xf teamviewer_qs.tar.gz
  • Starting from the terminal on a Ubuntu VM was
LC_ALL=C ./teamviewer
  • Initialization script based on Zoom script from Igel
#!/bin/sh

ACTION="custompart-qs_${1}"

# mount point path
MP=$(get custom_partition.mountpoint)

# custom partition path
CP="${MP}/qs"

# output to systemlog with ID amd tag
LOGGER="logger -it ${ACTION}"
echo "Starting" | $LOGGER

case "$1" in
init)
        LC_ALL=C ${CP}/teamviewer

esac

echo "Finished" | $LOGGER
exit 0