Ubuntu Linux

How to Install Slack on Ubuntu 24.04

Richard
Written by
Richard
Dec 28, 2024 Updated Mar 20, 2026 4 min read
How to Install Slack on Ubuntu 24.04

This article explains how to install Slack on Ubuntu 24.04.

Slack is a real-time messaging and collaboration platform for teams to communicate and share information. It offers channels for organizing conversations, direct messaging, file sharing, and integration with other tools (like Google Drive and Trello).

With Slack, conversations can be organized into channels based on projects or topics, reducing clutter and helping users find relevant discussions.

Slack works on various platforms, including Windows, Mac, and Linux, so that team members can communicate seamlessly regardless of their operating system.

There are multiple ways to install Slack on Ubuntu. The steps below list some methods you can use to install it.

Install Slack on Ubuntu from DEB

Slack has a .deb package for Debian-based systems like Ubuntu. You can install the app quickly using the deb package.

Run the command below to do that.

🐧Bash / Shell
sudo apt update
sudo apt upgrade

Then, visit the Slack downloads page and search for the latest version for Debian systems.

Copy the link and download using the wget command. The command below downloads Slack version 4.41.105.

💻Code
wget https://downloads.slack-edge.com/desktop-releases/linux/x64/4.41.105/slack-desktop-4.41.105-amd64.deb

Once downloaded, run the command below to install it.

🐧Bash / Shell
sudo apt install ./slack-desktop-4.41.105-amd64.deb 

After installing, click on Activities in the top left corner of your screen. Select Show Applications.

Search for Slack in the application list or use the search bar. Click on the Slack icon to launch the application.

Slack on Ubuntu

Start using Slick.

Install Slack from Snap

Another way to install Slack is to use the Snap package manager.

To do that, install the Snap package manager if it’s not already installed.

🐧Bash / Shell
sudo apt install snapd

Next, install core Snap and enable classic support by running the command below.

🐧Bash / Shell
sudo ln -s /var/lib/snapd/snap /snap
sudo snap install core

Then, run the command below to install Slack from the Snap package manager.

🐧Bash / Shell
sudo snap install slack --classic

Once installed, use the Dock on the left sidebar to search and launch the Slack app.

You can also run the app using the command below.

💻Code
snap run slack

Remove the app using the command below.

🐧Bash / Shell
sudo snap remove slack

Install Slack from Flatpak

Yet another way to install Slack is to use the Flatpak package manager. Flatpak uses a sandboxing package installation, enhancing security and allowing easy updates.

Flatpak is a third-party application distribution system that is not included in Ubuntu by default.

You must install the Flatpak package manager and then install Slack from there.

First, update and install Flatpak.

🐧Bash / Shell
sudo apt update && sudo apt upgrade
sudo apt install flatpak

Next, add the Flatpak repository to Ubuntu.

🐧Bash / Shell
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

Finally, install Slack.

💻Code
flatpak install flathub com.slack.Slack

Once installed, you can launch it using the command below or open the app in the desktop apps center.

💻Code
flatpak run com.slack.Slack

Uninstall the app using the command below.

💻Code
flatpak uninstall --delete-data flathub com.slack.Slack

That should do it!

Conclusion:

Installing Slack on Ubuntu 24.04 can enhance team communication and collaboration. With multiple installation methods available, you can choose the one that best fits your preferences. Here are the key points to remember:

  • Multiple Installation Options: You can install Slack using DEB, Snap, or Flatpak, offering flexibility based on your system setup.
  • Easy Access: After installation, Slack can be easily accessed from the Activities overview or through the application search.
  • Seamless Collaboration: Slack allows real-time messaging and integration with various tools, promoting efficient teamwork.
  • Regular Updates: Each installation method ensures you can keep Slack updated with the latest features and security improvements.
  • User-Friendly Interface: Slack’s intuitive design suits teams of all sizes, streamlining communication and project management.

Choose your preferred installation method and start collaborating with your team using Slack on Ubuntu!

Frequently Asked Questions

How do I install Slack on Ubuntu 24.04?

You can install Slack on Ubuntu 24.04 using several methods, including DEB packages, Snap, or Flatpak. Each method has specific commands to follow, which are detailed in the tutorial.

What is the Snap package manager and how do I use it to install Slack?

The Snap package manager is a tool for installing applications in a secure and isolated environment. To install Slack using Snap, you first need to install Snapd, then run the command 'sudo snap install slack --classic'.

Can I uninstall Slack once it's installed on Ubuntu?

Yes, you can uninstall Slack from Ubuntu using the command 'sudo snap remove slack' if you installed it via Snap. For DEB or Flatpak installations, similar commands are available to remove the application.

Is there a difference between installing Slack via DEB, Snap, and Flatpak?

Yes, each installation method has its own advantages. DEB is straightforward for Debian-based systems, Snap offers sandboxing for security, and Flatpak allows for easy updates and isolation from the system.

Where can I find the latest version of Slack for Ubuntu?

You can find the latest version of Slack for Ubuntu on the official Slack downloads page. Make sure to select the DEB package for Debian-based systems like Ubuntu.

Was this guide helpful?

Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, the owner and lead writer at Geek Rewind, is a tech enthusiast passionate about simplifying complex IT topics. His years of hands-on experience in system administration and enterprise IT operations have honed his ability to provide practical insights and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2456 articles → Twitter

📚 Related Tutorials

Enable Natural Scrolling in Ubuntu Linux
Ubuntu Linux Enable Natural Scrolling in Ubuntu Linux
How to Disable IPv6 on Ubuntu Linux
Ubuntu Linux How to Disable IPv6 on Ubuntu Linux
Install OpenVAS on Ubuntu 24.04: Complete Guide
CMS Install OpenVAS on Ubuntu 24.04: Complete Guide
How to Show Dock on All Displays in Ubuntu Linux
Ubuntu Linux How to Show Dock on All Displays in Ubuntu Linux

Leave a Reply

Your email address will not be published. Required fields are marked *