2.2.4
Fedora 30
N/A
N/A
[vagrant@fedora30 ~]$ vagrant --debug
ruby: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
No ruby error
Ruby error for any command run
N/A
Hello, I have the same issue with fedora V30. I have downloaded the last binary for "linux" from the website, and when i want to run it i get this :
```TestServer ../vagrant
/tmp/.mount_vagranPTiB6r/usr/bin/ruby2.4: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
/tmp/.mount_vagranPTiB6r/usr/bin/ruby2.4: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
From what i have found digging, fedora no-longer include libcrypt.so.1, but only libcrypt.so.2
```ls -al /usr/lib/libcrypt*
lrwxrwxrwx. 1 root root 19 16 avril 15:07 /usr/lib/libcrypto.so.1.1 -> libcrypto.so.1.1.1b
-rwxr-xr-x. 1 root root 4053752 16 avril 15:08 /usr/lib/libcrypto.so.1.1.1b
lrwxrwxrwx. 1 root root 17 15 mars 12:29 /usr/lib/libcrypt.so.2 -> libcrypt.so.2.0.0
-rwxr-xr-x. 1 root root 271632 15 mars 12:29 /usr/lib/libcrypt.so.2.0.0
Thank's to a co-worker who pointed me to it, the workaround described here seam to work
# dnf install libxcrypt-compat
Hello, I have the same issue with fedora too.
$ vagrant up
ruby: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
$ rpm -ql vagrant | grep libcrypt
/opt/vagrant/embedded/lib64/libcrypto.a
/opt/vagrant/embedded/lib64/libcrypto.so
/opt/vagrant/embedded/lib64/libcrypto.so.1.1
/opt/vagrant/embedded/lib64/pkgconfig/libcrypto.pc
vagrant.x86_64 1:2.2.4-1
on version vagrant-2.2.4-2.fc30.noarch all work correctly
Hey all: I've created a pull request that resolves this issue on Fedora 30: https://github.com/hashicorp/vagrant-installers/pull/149
Its fix should be out in the next release of Vagrant (version 2.2.5), which should be coming soon. Thanks!
I'm going to lock this issue because it has been closed for _30 days_ โณ. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Most helpful comment
Hello, I have the same issue with fedora V30. I have downloaded the last binary for "linux" from the website, and when i want to run it i get this :
```TestServer ../vagrant
/tmp/.mount_vagranPTiB6r/usr/bin/ruby2.4: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
/tmp/.mount_vagranPTiB6r/usr/bin/ruby2.4: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
Thank's to a co-worker who pointed me to it, the workaround described here seam to work
# dnf install libxcrypt-compat