@rafaelff: I see, thanks for the clearing up!
Search Criteria
Package Details: teamviewer 15.59.3-1
Package Actions
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: | http://www.teamviewer.com |
Licenses: | custom |
Conflicts: | teamviewer-beta |
Provides: | teamviewer |
Submitter: | Hilinus |
Maintainer: | swiftgeek (nickoe, astronautlevel) |
Last Packager: | swiftgeek |
Votes: | 1474 |
Popularity: | 2.21 |
First Submitted: | 2010-04-15 10:29 (UTC) |
Last Updated: | 2024-11-15 22:36 (UTC) |
Dependencies (5)
Required by (3)
Sources (4)
- https://dl.teamviewer.com/download/linux/version_15x/teamviewer_15.59.3_amd64.deb
- https://dl.teamviewer.com/download/linux/version_15x/teamviewer_15.59.3_arm64.deb
- https://dl.teamviewer.com/download/linux/version_15x/teamviewer_15.59.3_armhf.deb
- https://dl.teamviewer.com/download/linux/version_15x/teamviewer_15.59.3_i386.deb
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 .. 127 Next › Last »
jhossbach commented on 2021-08-29 19:46 (UTC)
rafaelff commented on 2021-08-29 19:14 (UTC)
Oh, I see; latest PKGBUILD version has qt5-webengine as depends, so issue solved.
rafaelff commented on 2021-08-29 19:11 (UTC)
@jhossbach: actually your analysis is not correct.
lddtree
tool shows us that /opt/teamviewer/tv_bin/TeamViewer
is linked to libQt5WebEngineCore.so.5 from /opt/teamviewer/tv_bin/RTlib/qt/lib/libQt5WebEngineCore.so.5
, which is not the soname file provided by qt5-webengine
package; it is provided in the teamviewer package.
lddtree
also shows us that /opt/teamviewer/tv_bin/RTlib/qt/lib/libQt5WebEngineCore.so.5
is linked to libminizip.so.1 from /usr/lib/libminizip.so.1
, which is provided by the minizip package:
$ pacman -Qo /usr/lib/libminizip.so.1
/usr/lib/libminizip.so.1 pertence a minizip 1:1.2.11-4
Run pactree teamviewer | less
(pactree from pacman-contrib) to see that minizip is not in the package dependency tree.
If minizip is not listed in the package dependency tree neither provided in the package, it is a missing dependency.
jhossbach commented on 2021-08-29 18:36 (UTC)
'lddtree /opt/teamviewer/tv_bin/TeamViewershows that qt5-webengine depends on
/usr/lib/libminizip.so.1, and indeed
qt5-webenginehas
minizipas a dependency. So
minizipshould already be installed through
qt5-webengine`. I just want to clarify this for anyone interested
rafaelff commented on 2021-08-29 16:08 (UTC)
readelf
from binutils
is also a good option, and cleaner than ldd
:
readelf -d /opt/teamviewer/tv_bin/TeamViewer | grep NEEDED
swiftgeek commented on 2021-08-29 15:58 (UTC)
Use lddtree
from pax-utils
for more accurate representation of a dependency tree
jhossbach commented on 2021-08-29 15:28 (UTC)
minizip
is indeed needed as dependency, running ldd /opt/teamviewer/tv_bin/TeamViewer |grep minizip
gives /usr/lib/libminizip.so.1
.
0xb000bd commented on 2021-08-28 21:35 (UTC) (edited on 2021-08-28 21:36 (UTC) by 0xb000bd)
It took me too much time to make teamviewer launch successfully :)
Add minizip
to Dependencies. PLEASEEEEEE :(
quasigod commented on 2021-08-25 05:11 (UTC)
Please add minizip as a dependency, it will not launch the gui without it.
iohzrd commented on 2021-08-16 18:51 (UTC)
can confirm, not working after most recent update.
~ >>> sudo systemctl status teamviewerd
● teamviewerd.service - TeamViewer remote control daemon
Loaded: loaded (/usr/lib/systemd/system/teamviewerd.service; disabled; vendor preset: disabled)
Active: active (running) since Mon 2021-08-16 11:51:05 PDT; 963ms ago
Process: 22905 ExecStart=/opt/teamviewer/tv_bin/teamviewerd -d (code=exited, status=0/SUCCESS)
Main PID: 22907 (teamviewerd)
Tasks: 28 (limit: 38438)
Memory: 3.0M
CPU: 12ms
CGroup: /system.slice/teamviewerd.service
└─22907 /opt/teamviewer/tv_bin/teamviewerd -d
Aug 16 11:51:05 systemd[1]: Starting TeamViewer remote control daemon...
Aug 16 11:51:05 systemd[1]: teamviewerd.service: Can't open PID file /run/teamviewerd.pid (yet?) after start: Operation not permitted
Aug 16 11:51:05 systemd[1]: Started TeamViewer remote control daemon.
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.
startx
users 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.conf
withSource: https://community.teamviewer.com/English/discussion/95696/teamviewer-15-stopped-working-on-debian-buster#M4399