Skip to content
Follow
Ubuntu Linux

How to Install Slack on Ubuntu 24.04

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

You install Slack on Ubuntu 24.04 by downloading its official Debian package (.deb) and installing it via the terminal.

Slack is a popular team communication platform that centralizes messaging, file sharing, and collaboration into a single application, often replacing internal email.

This guide walks you through grabbing the latest Slack package directly from the official Slack website for your Ubuntu 24.04 system.

⚡ Quick Answer

Download the Slack Debian package (.deb) from the official website. Update your package list with `sudo apt update`, then install the downloaded .deb file using `sudo apt install ./slack-desktop-VERSION-amd64.deb`. Search for Slack in your applications to launch it.

Install Slack on Ubuntu from DEB

You can install Slack on Ubuntu 24.04 by downloading its official .deb package directly from the Slack website.

You can use 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
Slack on Ubuntu

Start using Slack.

Install Slack from Snap

Installing Slack on Ubuntu 24.04 using Snap is a simple method if you like using the Snap package manager.

To do that, make sure you have the Snap package manager installed. If not, you can install it first.

🐧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

You can install Slack on Ubuntu 24.04 using Flatpak, a system that installs apps in a safe sandbox for simple 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

And that’s 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!

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips 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.

📚 Related Tutorials

How to Install ClamAV Linux Antivirus on Ubuntu Linux
Ubuntu Linux How to Install ClamAV Linux Antivirus on Ubuntu Linux
How to Install LibreOffice on Ubuntu Linux
Ubuntu Linux How to Install LibreOffice on Ubuntu Linux
How to Uninstall Software in Ubuntu Linux
Ubuntu Linux How to Uninstall Software in Ubuntu Linux
How to Install Bitwarden on Ubuntu Linux
CMS How to Install Bitwarden on Ubuntu Linux

No comments yet — be the first to share your thoughts!

Leave a Comment

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