CentOS 8Red Hat Enterprise Linux 8にTeamViewer (Classic)をインストールするにあたり、以下の設定が必要となります。

この記事は、すべての TeamViewer (Classic) ユーザに適用されます。

RPMシステムについて(Fedoraを含む)

TeamViewer (Classic)をRPMシステムにコマンドラインで初めてインストールする際に、パッケージの署名を確認するためのキーが見つからない事があります。これを無視/上書きするか、最初に公開鍵をインストールすることができます。

ここで公開鍵ファイルをダウンロードし、管理者として次のコマンドを使用して鍵をインポートします。

rpm --import TeamViewer_Linux_PubKey.asc 

 

Red Hat Enterprise Linux

RHELでは、TeamViewer (Classic)は現在、WorkstationまたはServerのサブスクリプションでのみインストールできます。 RHELデスクトップサブスクリプションでは、すべての依存関係(つまりqt5-qtdeclarative)を解決できるわけではありません。

さらに、epelリポジトリを有効にする必要があります。

必要な手順

# RHEL 7 preparation
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum install ./epel-release-latest-7.noarch.rpm

# RHEL 8 preparation
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
yum install ./epel-release-latest-8.noarch.rpm

# download TeamViewer Host for 64bit
wget https://download.teamviewer.com/download/linux/teamviewer-host.x86_64.rpm
# alternatively, download full client
wget https://download.teamviewer.com/download/linux/teamviewer.x86_64.rpm

# install the package (RHEL 7)
yum install ./teamviewer*.rpm
# install the package (RHEL 8)
yum --enablerepo epel-playground install ./teamviewer*.rpm

 

CentOS

CentOS 7・CentOS 8では、epelリポジトリが必要です。

必要な手順

# preparation: install epel-release
yum install epel-release

# download and install (example: TeamViewer Host, 64 bit)
wget https://download.teamviewer.com/download/linux/teamviewer-host.x86_64.rpm
yum install ./teamviewer-host*.rpm

📌注意: 7.3から7.4への移行時には、crリポジトリも必要でした。依存関係が満たされない場合は、yum install ./teamviewer-host*.rpm --enablerepo = "cr"を試してください。