If you’re looking for an easy way to access or support a remote device, TeamViewer for Ubuntu is a trusted solution. In this guide, you’ll learn how to install TeamViewer on Ubuntu 24.04 with just a few simple commands. Whether you’re a beginner or a seasoned user, this tutorial covers everything from downloading to launching TeamViewer on your Linux system.
🛠️ Method 1: Install TeamViewer via .deb Package
Step 1: Download the TeamViewer .deb file
wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb
Step 2: Install the downloaded file
sudo apt install ./teamviewer_amd64.deb
💡 Tip: If dependencies are missing, run:
sudo apt --fix-broken install
Step 3: Launch TeamViewer
teamviewer
🛠️ Method 2: Install TeamViewer via Terminal (Command-Line Only)
Add TeamViewer repository key:
wget -O - https://download.teamviewer.com/download/linux/signature/TeamViewer2017.asc | sudo gpg --dearmor -o /usr/share/keyrings/teamviewer.gpg
Add TeamViewer repo:
echo "deb [signed-by=/usr/share/keyrings/teamviewer.gpg] https://linux.teamviewer.com/deb stable main" | sudo tee /etc/apt/sources.list.d/teamviewer.list
Update and install:
sudo apt update
sudo apt install teamviewer
📋 Verify Installation
You can confirm installation by running:
teamviewer --version
More: Team Viewer installation on Ubuntu 22.04
🧩 Bonus: Allow TeamViewer Through Firewall
If UFW (Uncomplicated Firewall) is enabled:
sudo ufw allow 5938/tcp
💡 Troubleshooting Tips
- If TeamViewer doesn’t open: Check if the graphical environment is properly configured.
- Use
teamviewer daemon restart
if it freezes.
🎯 Why Use TeamViewer on Ubuntu?
- Secure remote access
- Lightweight and reliable on Linux
- Ideal for IT support or personal remote work
📝 Conclusion:
Now that you’ve learned how to install TeamViewer on Ubuntu 24.04, you’re all set for seamless remote access and support. Keep your system updated, and TeamViewer will continue to work smoothly.