Difference between revisions of "Igel Teamviewer"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) |
Michael.mast (talk | contribs) |
||
| Line 6: | Line 6: | ||
<pre> | <pre> | ||
LC_ALL=C ./teamviewer | LC_ALL=C ./teamviewer | ||
| + | </pre> | ||
| + | *Initialization script based on Zoom script from Igel | ||
| + | <pre> | ||
| + | #!/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 | ||
</pre> | </pre> | ||
Revision as of 15:31, 3 August 2020
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