Skip to content
Follow
Ubuntu Linux

How to Install Slack on Ubuntu 24.04

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

Install Slack on Ubuntu 24.04 using your choice of the official .deb package, Snap, or Flatpak. This guide walks you through each installation method.

Advertisement

⚡ 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.

Advertisement

Install Slack on Ubuntu from DEB

To install Slack on Ubuntu from DEB, download the official installer package from the Slack website and run it through your terminal. This method uses a standard Debian package to set up the app directly on your system without needing third-party stores.

The terminal executes this workflow.

Head to the Slack downloads page to grab the latest version built for Debian systems.

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

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

Execute the command below to complete the installation once the download finishes.

sudo apt install ./slack-desktop-4.41.105-amd64.deb 

Open the Activities overview in the top-left corner, search for Slack, and launch the app.

Slack on Ubuntu
Slack on Ubuntu

Begin messaging your team.

Advertisement

Install Slack from Snap

To install Slack from Snap on Ubuntu, open your terminal and run the snap command for the application. Snap is built into Ubuntu by default, making this the fastest way to get the messaging app running and keep it updated automatically.

The Snap package manager is required to handle the application on Ubuntu 24.04. Opening a terminal and running `sudo apt install snapd` sets up this package manager.

sudo apt install snapd

Run the command below to install the core package and enable classic support.

sudo ln -s /var/lib/snapd/snap /snap
sudo snap install core

Deploy the application through the Snap package manager by running the command below.

Advertisement
sudo snap install slack --classic

Locate and launch the Slack app via the Dock on the left sidebar.

Executing the command below also starts the software.

snap run slack

Remove the software using the command below.

sudo snap remove slack

Install Slack from Flatpak

To install Slack from Flatpak on Ubuntu, set up the Flatpak utility on your system first and then download the messaging app package from Flathub. This method runs the app inside an isolated sandbox environment away from the rest of your system files.

Advertisement

Flatpak operates as a third-party application distribution system absent from standard Ubuntu installations.

Obtaining the Flatpak package manager enables subsequent application downloads.

Update system repositories and install Flatpak.

sudo apt update && sudo apt upgrade
sudo apt install flatpak

Add the Flatpak repository to Ubuntu next.

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

Install the messaging platform.

Once you install Slack on Ubuntu 24.04, you can launch the Slack application by opening a terminal window and typing the command `slack` or by finding the Slack icon in your desktop's application center.

flatpak run com.slack.Slack

Remove the application using the command below.

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

Setup is complete.

Advertisement

Summary:

Running Slack on Ubuntu 24.04 improves team communication and collaboration workflows. Multiple deployment strategies let you pick the approach that matches your workflow. Review these core takeaways:

  • 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.

Pick your preferred setup 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.

Advertisement

📚 Related Tutorials

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
How to Enable Visual Alerts on Ubuntu Linux
Ubuntu Linux How to Enable Visual Alerts 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 *