Page 1 of 1

[SOLUTION] Using Teamviewer 8 on Mageia 3/4

PostPosted: Jun 6th, '13, 09:08
by hman
Hi all,
to remote support on linux and windows pc (behind firewall...) i use Teamviewer. To install and use it on Mageia,
download and install from teamviewer site:
Code: Select all
$ wget http://download.teamviewer.com/download/teamviewer_linux.rpm
# urpmi teamviewer_linux.rpm (as root)


release 8 use a service named teamviewerd to manage connections, so start teamviewer:
Code: Select all
# systemctl start teamviewerd.service (as root)
$ /opt/teamviewer8/tv_bin/script/teamviewer


to stop service after close application:
Code: Select all
# systemctl stop teamviewerd.service (as root)

Re: [SOLVED] Using Teamviewer 8 on Mageia 3

PostPosted: Jun 6th, '13, 09:53
by Lebarhon
Hello,

How about creating a page on the wiki ?

Re: [SOLVED] Using Teamviewer 8 on Mageia 3

PostPosted: Jun 6th, '13, 10:00
by Ken-Bergen
Lebarhon wrote:How about creating a page on the wiki ?
As a member here you are free to do so.

Re: [SOLVED] Using Teamviewer 8 on Mageia 3

PostPosted: Jun 6th, '13, 11:57
by Lebarhon
Ken-Bergen wrote:As a member here you are free to do so.

Except I haven't teamviewer installed, (Yes, I am free to do it), I haven't either hman experience nor knowledge of various errors messages (Yes, I am free to fetch them), I haven't Windows to make a try (Yes, I am free to buy it), I am working on other subjects (Yes, I am free to let them down) and I can write something about which I don't know anything (No, I am not morally free to do it)

Re: [SOLVED] Using Teamviewer 8 on Mageia 3

PostPosted: Jun 6th, '13, 19:11
by doktor5000
You don't need windows, there are no relevant error messages, and nobody else requested a wiki page for this so far.

Re: [SOLVED] Using Teamviewer 8 on Mageia 3

PostPosted: Jun 6th, '13, 22:38
by Lebarhon
doktor5000 wrote: and nobody else requested a wiki page for this so far.

It was just a suggestion because I think tools like Teamviewer are a good way to spread Mageia. Howto in a forum isn't easy to find again.
https://wiki.mageia.org/en/Feature:Remote-Help

Re: [SOLUTION] Using Teamviewer 8 on Mageia 3

PostPosted: Aug 23rd, '13, 04:42
by eor2004
It helped me install teamviewer, Thank you!

Re: [SOLUTION] Using Teamviewer 8 on Mageia 3

PostPosted: Aug 24th, '13, 17:57
by wolandec
Hello!

I have a computer with Mageia 3 Linux installed up on it, which displays some information in kiosk mode. Time to time I have to administrate it remotely. And it is no doubt that any tracks of teamviewer work on this computer are not acceptably in ordinary state of computer.

How can I start up teamviewer in hidden mode and keep my remote access to it?

No teamviewer window, tray icon or visible system notification are acceptably. Just silent mode!

Re: [SOLUTION] Using Teamviewer 8 on Mageia 3

PostPosted: Aug 24th, '13, 19:38
by doktor5000
You probably need a license for that, and you should ask that question to teamviewer customer support.

Re: [SOLUTION] Using Teamviewer 8 on Mageia 3

PostPosted: Aug 24th, '13, 19:48
by wolandec
doktor5000 wrote:You probably need a license for that, and you should ask that question to teamviewer customer support.

I've done it already and waiting for an answer.

Re: [SOLUTION] Using Teamviewer 8 on Mageia 3

PostPosted: Aug 25th, '13, 05:05
by jiml8
If you are administering it, why do you need the gui? Why not just log in using SSH and do X-forwarding? Or, if you have to see the display on the kiosk, use VNC to track the display, while using SSH and X forwarding to adminsterl.

Re: [SOLUTION] Using Teamviewer 8 on Mageia 3

PostPosted: Aug 25th, '13, 07:29
by wolandec
There is no static IP address on it.

Re: [SOLUTION] Using Teamviewer 8 on Mageia 3

PostPosted: Aug 25th, '13, 11:45
by jiml8
wolandec wrote:There is no static IP address on it.


That's not a problem. My workstation doesn't have a static IP either, and I talk to it from all over the world, all the time. I even ssh into it from my smartphone at fairly frequent intervals.

I have a website, and a domain. My workstation is configured to, once an hour on the hour, contact my website and announce itself. My website then stores the IP address and, if the address changes (which happens infrequently), I just hit my website at a specific URL to get the new address. For that matter, when I sit down at a strange computer and want to talk to my workstation, I can do that by hitting the website to get the address.

Now, if you don't have a website you can use, there are other ways. The easiest way that occurs to me is to have your remote system determine its IP address and email it to you. Hourly emails might be a bit much, but one ever 12 or 24 hours would be tolerable, unless your remote system has an address that changes more frequently than that...and if it does, then how does anyone use it?

Re: [SOLUTION] Using Teamviewer 8 on Mageia 3

PostPosted: Aug 25th, '13, 11:51
by wolandec
It is good idea, and maybe I'll stop on it. Thanks a lot!

Re: [SOLUTION] Using Teamviewer 8 on Mageia 3/4

PostPosted: Apr 8th, '14, 11:47
by hman
how to eliminate the annoying popup on systray icon ?

you need:
1. stop teamviewer service:
Code: Select all
# systemctl stop teamviewerd.service


2. edit file /etc/teamviewer/global.conf and add follow item:
Code: Select all
[int32] ShowTaskbarInfoOnMinimize = 0


3. edit also user settings file /home/<user>/.config/teamviewer9/config/client.conf and add the same item:
Code: Select all
[int32] ShowTaskbarInfoOnMinimize = 0


4. restart teamviewer service:
Code: Select all
# systemctl start teamviewerd.service


bye
Armando

Re: [SOLUTION] Using Teamviewer 8 on Mageia 3/4

PostPosted: Apr 8th, '14, 11:54
by wolandec
Thanks a lot, I'll try it!