DEV Community

Cover image for INSTALL SLACK ON LINUX MINT 21.1
Kwaku Duah
Kwaku Duah

Posted on • Edited on

INSTALL SLACK ON LINUX MINT 21.1

Slack remains an effective messaging platform that connects businesses and communities together in a peculiar space. Chatrooms on Slack are called channels, and they connect developers, professionals, and community members.


Pros Of Using Slack

The following are advantages of using Slack, in no particular order:

  • Slack can be used by individuals to host files and personal resources.
  • Slack is flexible and available for all businesses worldwide.
  • Slack is designed for businesses and allows resources to be updated at once by members in a community.
  • Slack allows users to search through over 10,000 messages.

TABLE OF CONTENTS

  • Download Slack For Linux
  • Install Dependencies
  • Install Slack
  • Conclusion

Download Slack For Linux

Update your Linux system to fetch the latest security patches from the repositories with the following commands:

sudo apt-get update  
sudo apt-get upgrade
Enter fullscreen mode Exit fullscreen mode

Visit the official website of Slack and download the RPM version.

Note: The RPM version cannot be installed on Debian-based operating systems like Ubuntu or Linux Mint.

In this tutorial, I will use a workaround to convert the RPM version to a DEB version, which is installable on Debian-based systems.

Slack Download


Installing Dependencies

Conversion of an RPM package to a DEB package requires a Linux utility called Alien. Alien is a conversion program that converts different Linux software packages to .deb files for installation.

Install Alien using the following command:

sudo apt-get install alien
Enter fullscreen mode Exit fullscreen mode

conversion

This is the downloaded RPM package located at:

home/.../Downloads/Programs

File

Convert the RPM file to a DEB file using Alien:

sudo alien slack-4.32.122-0.1.el8.x86_64.rpm
Enter fullscreen mode Exit fullscreen mode

Replace the Slack package filename with the version you downloaded.

Alien conversion

This command will convert the .rpm file to a .deb file, which can now be installed on all Debian-based operating systems.


Install Slack

Install the newly created .deb package on Linux Mint using:

sudo apt install ./slack_4.32.122-1.1_amd64.deb
Enter fullscreen mode Exit fullscreen mode

six

To confirm the installation and check the installed Slack version, run:

slack --version
Enter fullscreen mode Exit fullscreen mode

seven


Conclusion

And ta-da! 🎉

This is a working Slack Desktop on Linux Mint.

Working

Top comments (2)

Collapse
 
serghei_muntean_7a3011388 profile image
Serghei Muntean

serghei@serghei-VivoBook-S15-X530UA:~/Downloads$ sudo alien slack-4.39.88-0.1.el8.x86_64.rpm

Unpacking of 'slack-4.39.88-0.1.el8.x86_64.rpm' failed at /usr/share/perl5/Alien/Package/Rpm.pm line 168.

Collapse
 
thekalderon profile image
Kwaku Duah

I see, could you give more details