@damico
it's related to the regression introduced in versions of qt5-base after 5.15.0-4, which also breaks the system tray icon. if you downgrade the qt5-base package to that version, copy+paste and the tray icon should work normally again.
| Git Clone URL: | https://aur.archlinux.org/teamviewer.git (read-only, click to copy) |
|---|---|
| Package Base: | teamviewer |
| Description: | All-In-One Software for Remote Support and Online Meetings |
| Upstream URL: | https://www.teamviewer.com/en/download/portal/linux/ |
| Licenses: | custom |
| Conflicts: | teamviewer-beta |
| Provides: | teamviewer |
| Submitter: | Hilinus |
| Maintainer: | swiftgeek (nickoe, astronautlevel) |
| Last Packager: | swiftgeek |
| Votes: | 1484 |
| Popularity: | 1.50 |
| First Submitted: | 2010-04-15 10:29 (UTC) |
| Last Updated: | 2026-05-11 17:35 (UTC) |
« First ‹ Previous 1 .. 8 9 10 11 12 13 14 15 16 17 18 .. 129 Next › Last »
@damico
it's related to the regression introduced in versions of qt5-base after 5.15.0-4, which also breaks the system tray icon. if you downgrade the qt5-base package to that version, copy+paste and the tray icon should work normally again.
Why can't I copy and paste inside TeamViewer? Like someone send me a ID and password, I can't control+c and control+v inside the application.
qt5-base 5.15.0-5 seems to break the system tray icon for me on KDE. Works fine on qt5-base 5.15.0-4.
happened on xfce too.
qt5-base 5.15.0-5 seems to break the system tray icon for me on KDE. Works fine on qt5-base 5.15.0-4.
tnx @dumblob, yes, it's all about session type.
You cannot change it from dbus, but, you can set it type initially. From PAM config.
Add "type=x11" to /etc/pam.d/system-login:
-session optional pam_systemd.so type=x11
And that crapware will run without DM afterwards. And don't forget to add your user to video group (usermod -a -G video username) for /dev/fb access.
@seyn6gk regarding startx etc. not working, I'm pretty sure it's because TV looks for session type (loginctl session-status | grep Service:) and finds out its type is tty instead of x11 (or wayland).
Systemd v246 added support for changing session type "on the fly" (see how sway implements that), but I couldn't make it work with Activate -> TakeControl -> SetType using dbus-send and then startx (I always get only owner of the terminal can take control).
Feel free to try yourself as it should work.
sudo dbus-send --system --print-reply --dest=org.freedesktop.login1 \
/org/freedesktop/login1/session \
org.freedesktop.DBus.Introspectable.Introspect |
grep -E 'node name="_.*'
(use the session number in the subsequent dbus-send calls)
dbus-send --system --print-reply --dest=org.freedesktop.login1 \
/org/freedesktop/login1/session/_"$1" \
org.freedesktop.login1.Session.Activate
dbus-send --system --print-reply --dest=org.freedesktop.login1 \
/org/freedesktop/login1/session/_"$1" \
org.freedesktop.login1.Session.TakeControl boolean:true
dbus-send --system --print-reply --dest=org.freedesktop.login1 \
/org/freedesktop/login1/session/_"$1" \
org.freedesktop.login1.Session.SetType string:x11
Don't worry guys I got fix for it.We are facing this issue due to lack of some dependencies in our system.
they are:
1. 'python-shiboken2'
2. 'gtkglext'
Commands for installing them:
"pacman -S python-shiboken2"
"pacman -S gtkglext"
Also set DNSSEC=false through this command "sudo nano /etc/systemd/resolved.conf"
Are you people enabling and starting the teamviewerd.service?
i have the same problem as Ataraxy. Teamviewer tells me the connection is not ready.
systemctl status teamviewerd says:
Jul 19 21:55:59 svelte systemd[1]: /usr/lib/systemd/system/teamviewerd.service:9: PIDFile= references a path below legacy directory /var/run/, updating /var/run/teamviewerd.pid → /run/teamviewerd.pid; please update the unit file accordingly.
Pinned Comments
swiftgeek commented on 2023-08-01 19:17 (UTC) (edited on 2023-08-01 19:21 (UTC) by swiftgeek)
As mentioned in @seyn6gk's comment
Without changing anything, since teamviewer 13 a desktop environment/login with display manager like lightdm/sddm/gdm is required.
startxusers can follow workaround mentioned in @r7v s commentr7v commented on 2022-06-07 14:49 (UTC)
Workaround for startx
Create drop-in
/etc/systemd/system/getty@tty1.service.d/getty@tty1.service-drop-in.confwithSource: https://community.teamviewer.com/English/discussion/95696/teamviewer-15-stopped-working-on-debian-buster#M4399