Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OSError: libc.musl-x86_64.so.1: cannot open shared object file: No such file or directory #3

Closed
kaxap opened this issue Nov 12, 2018 · 5 comments
Assignees

Comments

@kaxap
Copy link

kaxap commented Nov 12, 2018

Getting this

OSError: libc.musl-x86_64.so.1: cannot open shared object file: No such file or directory

with tutorial example on Ubuntu 16.04

@kaxap
Copy link
Author

kaxap commented Nov 12, 2018

Can be fixed with

apt-get install musl-dev

And then

ln -s /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1

@alexander-akhmetov
Copy link
Owner

Hi!

Thank you, I will update the documentation

@ELTR11
Copy link

ELTR11 commented Apr 8, 2019

send as file/link to file pls

@hanskokx
Copy link

Can be fixed with

apt-get install musl-dev

And then

ln -s /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1

My issue wasn't with telegram, but this was the only useful bit of information I found. Thank you!

@nikos445
Copy link

nikos445 commented Sep 17, 2021

I was trying to run tests that include: Jest + Supertest + Express + MongoDB + BCRYPT

on Gitlab CI and you made my DAY! :)

THANK YOU MATE! 👍🏼 🍺

Testing:
    stage: init 
    image: node:14   # Mongo Server Mock Only works with 14 / 15 (NOT 16!!!) 
    script: 
        - export DEBIAN_FRONTEND=noninteractive
        - apt update && apt install -y gcc musl-dev make
        - ln -s /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1
        - npm install
        - npm test 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants