I had the same issue launching Slack. Downgrading glibc and lib32-glibc solved the issue.
# pacman -U /var/cache/pacman/pkg/lib32-glibc-2.27-3-x86_64.pkg.tar.xz /var/cache/pacman/pkg/glibc-2.27-3-x86_64.pkg.tar.xz
Git Clone URL: | https://aur.archlinux.org/slack-desktop.git (read-only, click to copy) |
---|---|
Package Base: | slack-desktop |
Description: | Slack Desktop (Beta) for Linux |
Upstream URL: | https://slack.com/downloads |
Licenses: | custom |
Submitter: | ogarcia |
Maintainer: | ogarcia |
Last Packager: | ogarcia |
Votes: | 624 |
Popularity: | 10.22 |
First Submitted: | 2015-10-19 09:59 (UTC) |
Last Updated: | 2025-05-26 14:44 (UTC) |
« First ‹ Previous 1 .. 21 22 23 24 25 26 27 28 29 30 31 .. 49 Next › Last »
I had the same issue launching Slack. Downgrading glibc and lib32-glibc solved the issue.
# pacman -U /var/cache/pacman/pkg/lib32-glibc-2.27-3-x86_64.pkg.tar.xz /var/cache/pacman/pkg/glibc-2.27-3-x86_64.pkg.tar.xz
The problem that @archelaus is describing is related to glibc-2.28, most electron apps are affected. see the following threads:
https://bugs.archlinux.org/task/59550
https://www.reddit.com/r/archlinux/comments/9573e2/psa_use_flatpak_for_proprietary_applications_to/
Skype AUR has included the workaround described by wbdana and now it works. Maybe you could do the same so the package works automatically while this bug is solved upstream.
https://aur.archlinux.org/packages/skypeforlinux-stable-bin/
I have the same issue as @archelaus. I don't have a solution for it, but I see that the problem is not quite new and you can find something about it in the Google.
Another temporary solution would be to install slack from a snap package.
Running slack returns : Segmentation fault (core dumped)
@wbdana thank you very much. It worked!
@lira I also had the same problem. @hashstat 's solution (with @andris 's edit) worked for me (thanks you two!).
So what I did was:
mkdir /opt/glibc-2.27
sudo bsdtar xf /var/cache/pacman/pkg/glibc-2.27-3-x86_64.pkg.tar.xz --cd /opt/glibc-2.27
sudo patchelf --set-interpreter /opt/glibc-2.27/usr/lib/ld-linux-x86-64.so.2 --set-rpath \$ORIGIN:\$ORIGIN/lib/:/opt/glibc-2.27/usr/lib/ /usr/bin/slack
Then I could run slack normally.
I cannot start the slack. I have the same problem of @bararchy. How can I resolve it?
One can avoid need to specify LD_LIBRARY_PATH by setting also -rpath with patchelf
patchelf --set-interpreter /opt/glibc-2.27/usr/lib/ld-linux-x86-64.so.2 \ --set-rpath \$ORIGIN:\$ORIGIN/lib/:/opt/glibc-2.27/usr/lib/ \ /usr/bin/slack
Note that slack-desktop already uses -rpath and /opt/glibc-2.27/usr/lib/ must be added to it as in command above
Pinned Comments
ogarcia commented on 2020-02-06 11:44 (UTC) (edited on 2020-02-06 11:44 (UTC) by ogarcia)
Please, don't ask for add
lsb-release
as dependency. In Arch Linux this package is not needed to run Slack Desktop.And before asking for any other dependency as
make
orpatch
or whatever, please read the wiki.