惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
量子位
美团技术团队
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
月光博客
月光博客

Video Conferencing Blog

Istanbul New Airport transforms customer service with video kiosks — Video Conferencing Blog TrueConf at LEAP 2026 in Saudi Arabia — Video Conferencing Blog The Agency for Services and Payments created a safe collaborative space for 3,000 employees in France — Video Conferencing Blog Major updates of TrueConf Secure Collaboration Solutions at InfoComm India 2026 — Video Conferencing Blog TrueConf MCU 2.2.1: Changes and Improvements — Video Conferencing Blog TrueConf 4.1.1 for iOS and iPadOS: Changes and Improvements — Video Conferencing Blog TrueConf brings secure collaboration with AI to LEAP 2026 — Video Conferencing Blog Telemedicine video communication framework for eye test service in Israel — Video Conferencing Blog TrueConf AI Server recognizes speakers by voice in any meeting recording — Video Conferencing Blog TrueConf powers collaboration of energy infrastructure in Bangladesh — Video Conferencing Blog Corporate messenger in a private network — the only way to protect your chats — Video Conferencing Blog Sovereign Collaboration Platform: Requirements and Architecture TrueConf 8.5.5: Changes and Improvements — Video Conferencing Blog Sovereign Video Conferencing: Architecture, Control and Platforms Optimizing TrueConf Room for Multi-Monitor Conference Setups — Video Conferencing Blog TrueConf 4.1 for iOS: Messenger Improvements — Video Conferencing Blog Secure Communication Platform for Enterprises: 2026 Guide TrueConf 3.2 for Android TV: Tone Dialling, User-Friendly Conference Management, and Updated UI — Video Conferencing Blog Webinar: New Features of API and Chat Bots — Video Conferencing Blog What will happen to Microsoft Teams on Windows 7, 8, and 10? — Video Conferencing Blog How to use TrueConf chatbots with the Hermes AI agent — Video Conferencing Blog TrueConf Calendar Connector 2.4: Support for Rooms and “Do Not Disturb” Status for Offline Meetings — Video Conferencing Blog How to use TrueСonf bots with the OpenClaw AI agent — Video Conferencing Blog How to create a "Let's Encrypt" certificate on Windows TrueConf AI Server 1.1: Detecting Speakers by Voice, Uploading Recordings, and Transcription Search — Video Conferencing Blog TrueConf Server: Security Updates for June 2026 — Video Conferencing Blog Enterprise Video Conferencing: Top 10 Platforms, Features and Deployment Options TrueConf 4.0 for iOS: Voice Messages and Additional Statuses — Video Conferencing Blog Self-Hosted Video Conferencing in Enterprise Environments Business Document Sharing: Secure Files Collaboration + 5 Best Tools
How to install TrueConf client application for Linux
Dimitrii Zuikov Date published: 22.04.2026 · 2026-04-22 · via Video Conferencing Blog

TrueConf offers native applications for multiple Linux distributions. Check out TrueConf advantages:

  • 4K video conferencing for up to 2000 users
  • Team messaging and personal chats
  • Ability to archive chats and group them by folders
  • Support for “favorites” (a private chat with important messages to be reviewed)
  • Meeting recording
  • Content sharing and slideshow
  • Remote desktop control
  • Real-time meeting management
  • 100% security for your communications.

Find out your operating system version

You can check your operating system version by running the following command in the terminal (it can be applied for all Linux operating systems):

The basic information about your operating system, including its name and version, will be displayed in the console. For example, on the screenshot below you can see that you are using Debian 10:

How to install TrueConf client application for Linux 1

Download TrueConf for Linux

Should you encounter any problems with application installation, please contact our technical support team.

Graphical Installation

For installing TrueConf, we recommend using the graphical installer. The graphical installer can be invoked by (double) clicking the downloaded package. Depending on your distribution you will get different possibilities to install the package, e.g. Open with Ubuntu Software Center.

To install the application from the terminal, run the commands with sudo, or first switch to administrator mode by executing the su - command in the terminal and entering the root password. Please note that sudo may not be available in the OS by default. You can check its availability with the sudo -V command. The examples shown below include sudo.

Debian, Ubuntu, Mint

How to Install It?

You will need to run a command using the administrator account to launch the downloaded package:

sudo apt install ./trueconf_client_name.deb

trueconf_client_name.deb — the downloaded package name

TrueConf repository address is assigned automatically after the application installation.

Alternate installation

Run the following commands in the terminal (console) under the administrator account:

  • Debian 12 and below

    • Execute the following command to create the file /etc/apt/sources.list.d/trueconf.list which already contains all required content:

      echo "deb [arch=$(dpkg --print-architecture)] https://mirror.trueconf.com/debian $(lsb_release -cs) non-free" | sudo tee /etc/apt/sources.list.d/trueconf.list > /dev/null

    • Run the following commands consecutively under the administrator account:

      wget -O- https://mirror.trueconf.com/deb.trueconf.asc | sudo gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/trueconf.gpg --import

      sudo chmod 644 /etc/apt/trusted.gpg.d/trueconf.gpg

      sudo apt -y update

      sudo apt -y install trueconf

  • Debian 13+

    • Execute the following command to create the file /etc/apt/sources.list.d/trueconf.sources which already contains all required content:

      echo "Types: deb

      URIs: https://mirror.trueconf.com/debian

      Suites: $(lsb_release -cs)

      Components: non-free

      Signed-By: /usr/share/keyrings/trueconf.gpg

      " | sudo tee /etc/apt/sources.list.d/trueconf.sources > /dev/null

    • Run these commands consecutively under the administrator account to install the key:

      wget -O- https://mirror.trueconf.com/deb.trueconf.asc | sudo gpg --no-default-keyring --keyring gnupg-ring:/usr/share/keyrings/trueconf.gpg --import

      sudo chmod 644 /usr/share/keyrings/trueconf.gpg

      Attention! If you previously installed TrueConf application from the repository by using the .pub key (or an error occurs during public key verification), you first have to delete the old key by running this command:

      sudo rm /etc/apt/trusted.gpg.d/trueconf.gpg

      And repeat key installation.

    • Now refresh information about packages and install the application:

      sudo apt update

      sudo apt install trueconf

  • Ubuntu 22.10+

    • Execute the following command to create the file /etc/apt/sources.list.d/trueconf.sources which already contains all required content:

      echo "Types: deb

      URIs: https://mirror.trueconf.com/ubuntu

      Suites: $(lsb_release -cs)

      Components: non-free

      Signed-By: /usr/share/keyrings/trueconf.gpg

      " | sudo tee /etc/apt/sources.list.d/trueconf.sources > /dev/null

    • Run these commands consecutively under the administrator account to install the key:

      wget -O- https://mirror.trueconf.com/deb.trueconf.asc | sudo gpg --no-default-keyring --keyring gnupg-ring:/usr/share/keyrings/trueconf.gpg --import

      sudo chmod 644 /usr/share/keyrings/trueconf.gpg

      Attention! If you previously installed TrueConf application from the repository by using the .pub key (or an error occurs during public key verification), you first have to delete the old key by running this command:

      sudo rm /etc/apt/trusted.gpg.d/trueconf.gpg

      And repeat key installation.

    • Now refresh information about packages and install the application:

      sudo apt update

      sudo apt install trueconf

  • Ubuntu 22.04 and below, Linux Mint

    Execute the following commands:

    echo "deb [arch=$(dpkg --print-architecture)] https://mirror.trueconf.com/ubuntu $(lsb_release -cs) non-free" | sudo tee /etc/apt/sources.list.d/trueconf.list > /dev/null

    wget -O- https://mirror.trueconf.com/deb.trueconf.asc | sudo gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/trueconf.gpg --import

    sudo chmod 644 /etc/apt/trusted.gpg.d/trueconf.gpg

    sudo apt -y update

    sudo apt -y install trueconf

How to Update It?

Attention! If you previously installed TrueConf application from the repository by using the .pub key (or an error occurs during public key verification), you first have to delete the old key by running this command:

sudo rm /etc/apt/trusted.gpg.d/trueconf.gpg

Next, repeat key installation and update the application:

wget -O- https://mirror.trueconf.com/deb.trueconf.asc | sudo gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/trueconf.gpg --import

sudo chmod 644 /etc/apt/trusted.gpg.d/trueconf.gpg

sudo apt -y update

sudo apt -y install trueconf

After initial installation of the application in one of the suggested methods you will be notified about updates automatically.

CentOS, Red Hat Enterprise Linux, Fedora, openSUSE

Connection of EPEL repository

Before installing TrueConf on CentOS and Red Hat, connect the EPEL repository by running the following command as the administrator:

How to Install It?

You will need to run a command to launch the downloaded package:

  • CentOS (you need to install and enable EPEL repository beforehand):

    sudo dnf install trueconf_client_name.rpm

  • Red Hat Enterprise Linux (you need to install and enable EPEL repository beforehand):

    sudo dnf install trueconf_client_name.rpm

  • Fedora:

    sudo dnf install trueconf_client_name.rpm

  • openSUSE:

    sudo zypper install trueconf-client-name.rpm

Where trueconf_client_name.rpm is the downloaded package name.

TrueConf repository address is assigned automatically after the application installation.

Alternate installation for CentOS, Red Hat Enterprise Linux and Fedora

  • Create a file /etc/yum.repos.d/trueconf.repo with the following command (the file with required contents will be created immediately):

    • For CentOS (you need to install and enable EPEL repository beforehand):

      { echo "[trueconf]"

        echo "name=TrueConf Repository"

        echo "baseurl=https://mirror.trueconf.com/centos/$releasever/$basearch/release"

        echo "enabled=1"

        echo "gpgcheck=1"

        echo "gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-trueconf"

      } | sudo tee -a /etc/yum.repos.d/trueconf.repo > /dev/null

    • For CentOS Stream (you need to install and enable EPEL repository beforehand):

      { echo "[trueconf]"

        echo "name=TrueConf Repository"

        echo "baseurl=https://mirror.trueconf.com/centos-stream/$releasever/$basearch/release"

        echo "enabled=1"

        echo "gpgcheck=1"

        echo "gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-trueconf"

      } | sudo tee -a /etc/yum.repos.d/trueconf.repo > /dev/null

    • For Red Hat Enterprise Linux (you need to install and enable EPEL repository beforehand):

      { echo "[trueconf]"

        echo "name=TrueConf Repository"

        echo "baseurl=https://mirror.trueconf.com/rhel/$releasever/$basearch/release"

        echo "enabled=1"

        echo "gpgcheck=1"

        echo "gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-trueconf"

      } | sudo tee -a /etc/yum.repos.d/trueconf.repo > /dev/null

    • For Fedora:

      { echo "[trueconf]"

        echo "name=TrueConf Repository"

        echo "baseurl=https://mirror.trueconf.com/fedora/$releasever/$basearch/release"

        echo "enabled=1"

        echo "gpgcheck=1"

        echo "gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-trueconf"

      } | sudo tee -a /etc/yum.repos.d/trueconf.repo > /dev/null

  • Run commands:

    For CentOS Stream 9, Fedora 38:

    sudo rpm --import https://mirror.trueconf.com/rpm-v3.trueconf.pub

    sudo dnf install trueconf

    For CentOS older than Stream 9, Fedora older than version 38 and Red Hat Enterprise Linux:

    sudo rpm --import https://mirror.trueconf.com/rpm.trueconf.pub

    sudo dnf install trueconf

Alternate installation for openSUSE

  • Create a file /etc/zypp/repos.d/trueconf.repo with the following command (the file with required contents will be created immediately):

    { echo "[trueconf]"

      echo "name=TrueConf Repository"

      echo "enabled=1"

      echo "autorefresh=1"

      echo "baseurl=https://mirror.trueconf.com/opensuse/$releasever/$basearch/release"

      echo "gpgcheck=1"

      echo "type=rpm-md"

      echo "keeppackages=0"

    } | sudo tee -a /etc/zypp/repos.d/trueconf.repo > /dev/null

  • Run commands:

    sudo wget https://mirror.trueconf.com/rpm.trueconf.pub

    sudo rpm --import rpm.trueconf.pub

    sudo zypper refresh

    sudo zypper install trueconf

How to Update It?

After initial installation of the application you will be notified about updates automatically.

Arch

How to Install It?

Available only for 64-bit systems:

sudo pacman -U trueconf_client_name.pkg.tar.xz

trueconf_client_name.pkg.tar.xz — the downloaded package name.

How to Update It?

The distribution is installed on top of the current version.

We are constantly improving and developing our products, so when new versions of the client application are released, the user will receive an automatic notification from the system right away!