Last active
May 14, 2021 16:28
-
-
Save fracasula/c6271506a9b8d9aedb993be037de5aef to your computer and use it in GitHub Desktop.
How to install Bluejeans on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install alien -y | |
sudo alien --scripts bluejeans_1.28.9-2_amd64.rpm # or whatever is the file you downloaded from the bluejeans website | |
sudo dpkg -i bluejeans_1.28.9-2_amd64.deb | |
cd /lib/x86_64-linux-gnu | |
sudo ln -s libudev.so libudev.so.0 | |
# now you can launch bluejeans | |
/opt/bluejeans/bluejeans-bin |
I think we should add libgconf-2-4.
Here my script:
sudo apt install alien -y
sudo alien --scripts bluejeans-1.37.22.x86_64.rpm # or whatever is the file you downloaded from the bluejeans website
sudo dpkg -i bluejeans_1.37.22-2_amd64.deb
sudo apt install libgconf-2-4.
# Run
/opt/bluejeans/bluejeans
For me, under Ubuntu 19.04 additional lib was missing. Final solution:
wget https://swdl.bluejeans.com/desktop/linux/1.37/1.37.22/bluejeans-1.37.22.x86_64.rpm
sudo apt install alien -y
sudo apt install libgconf-2-4 libgtk2.0-0
sudo alien --scripts bluejeans-1.37.22.x86_64.rpm # or whatever is the file you downloaded from the bluejeans website
sudo dpkg -i bluejeans_1.37.22-2_amd64.deb
# Run
/opt/bluejeans/bluejeans
I don't need to link the shared library file. directly works.
ubuntu 16.04
Works on ubuntu 20.04 with no additional links. Thanks! Finally working bluejeans 👍
Something might be missing in my Ubuntu 16.04. I can open the app but when I try to connect it give me a generic error.
The good news is that https://www.bluejeans.com/downloads now has the .deb option for Ubuntu
https://swdl.bluejeans.com/desktop-app/linux/2.5.0/BlueJeans_2.5.0.50.deb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@fracasula here's what I just did that seems to be working: