Difference between revisions of "Igel Teamviewer"

From Michael's Information Zone
Jump to navigation Jump to search
Line 8: Line 8:
 
LC_ALL=C ./teamviewer
 
LC_ALL=C ./teamviewer
 
</pre>
 
</pre>
*Initialization script based on Zoom script from Igel
+
*Initialization script based on Zoom script from Igel. I named it custompart-qs to stay conistant.
 
<pre>
 
<pre>
 
#!/bin/sh
 
#!/bin/sh
Line 32: Line 32:
 
echo "Finished" | $LOGGER
 
echo "Finished" | $LOGGER
 
exit 0
 
exit 0
 +
</pre>
 +
*Create the partition.
 +
<pre>
 +
chmod +x custompart-zoom
 +
version=$(teamviewerqs/teamviewer --version | grep -Eo [0-9]+.[0-9]+.[0-9]+)
 +
tar -cjvf qs_${version}.tar.bz2 teamviewerqs custompart-qs
 
</pre>
 
</pre>

Revision as of 15:37, 3 August 2020

  • Work in progress.
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. I named it custompart-qs to stay conistant.
#!/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
  • Create the partition.
chmod +x custompart-zoom
version=$(teamviewerqs/teamviewer --version | grep -Eo [0-9]+.[0-9]+.[0-9]+)
tar -cjvf qs_${version}.tar.bz2 teamviewerqs custompart-qs