zoukankan      html  css  js  c++  java
  • Centos7 安装Teamviewer

    参考:链接1  链接2  链接3

    由于工作原因,需要再Centos7.6下安装Teamviewer,流程如下:

    下载

    TeamViewer下载

    链接

    wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb
    

    注意选择对应系统的版本,我的是centos系统,64位

    下载完之后如果直接安装会提示缺少libQt5WebKitWidgets.so库,因此要先安装此库文件  

    下载依赖

    下载 libQt5WebKitWidgets.so库

    链接

    拉到最下,下载即可:

    wget https://download-ib01.fedoraproject.org/pub/epel/7/x86_64/Packages/q/qt5-qtwebkit-5.9.1-2.el7.x86_64.rpm

    下载 epel-release:

    链接

    找到Packages/e/epel-release-7-11.noarch.rpm,下载:

    wget https://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-13.noarch.rpm
    

    安装

    (1) rpm -Uvh epel-release*rpm
    
    (2) yum -y install qt5-qtwebkit*.rpm
    
    (3) yum -y install teamviewer*.rpm
    

    使用

    启动

    systemctl start teamviewerd.service

    重启

    systemctl restart teamviewerd.service

    停止

    systemctl stop teamviewerd.service

    查看状态

    systemctl status teamviewerd.service

    设置密码

    重置密码也是一样的

    teamviewer --passwd 123456

    查看ID

    eamviewer --info print id
    
    或者
    
    teamviewer info
    

    问题

    第一次安装好,开启服务后,查看ID,但是不显示ID

    是因为没有设置密码的原因,设置密码后即可:

    设置密码:

    teamviewer --passwd 123456

    重启服务:

    systemctl restart teamviewerd.service

    查看信息:

    teamviewer info
    

  • 相关阅读:
    linux_进程管理
    Linux-日志管理
    Httpd
    Linux-源码安装包管理
    Linux-计划任务管理
    Linux-LVM管理
    Linux-系统磁盘管理
    Linux-yum工具的使用
    Linux-rpm包管理
    Linux-网络进阶管理
  • 原文地址:https://www.cnblogs.com/pam-sh/p/14222734.html
Copyright © 2011-2022 走看看