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
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 theRPM
version to aDEB
version, which is installable on Debian-based systems.
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
This is the downloaded RPM package
located at:
home/.../Downloads/Programs
Convert the RPM file to a DEB file using Alien:
sudo alien slack-4.32.122-0.1.el8.x86_64.rpm
Replace the Slack package filename with the version you downloaded.
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
To confirm the installation and check the installed Slack version, run:
slack --version
Conclusion
And ta-da! 🎉
This is a working Slack Desktop on Linux Mint.
Top comments (2)
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.
I see, could you give more details