Skip to content

Instantly share code, notes, and snippets.

@fracasula
Last active May 14, 2021 16:28
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save fracasula/c6271506a9b8d9aedb993be037de5aef to your computer and use it in GitHub Desktop.
Save fracasula/c6271506a9b8d9aedb993be037de5aef to your computer and use it in GitHub Desktop.
How to install Bluejeans on Ubuntu
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
@DanielBonnery
Copy link

Hi,
I get the following error :

while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory

Any idea ?
thanks

@PeeBee85
Copy link

My release needed symlink to a different library name...


# cd /lib/x86_64-linux-gnu/
# sudo ln -s libudev.so.1 libudev.so.0

@trondhindenes
Copy link

On Ubuntu 17.10, I can't get sound working. Mic is fine, but no outbound sound.

@upman
Copy link

upman commented May 20, 2018

@trondhindenes I got the same issue. I had to open settings and select my output device to fix it.

@trondhindenes
Copy link

That didn't help for me. There's simply no sound whatever device I choose.

@ksandom
Copy link

ksandom commented Sep 9, 2018

I had the audio issue as well. You can work around it by installing and using pavucontrol to override the recording device for the application in real time. This has been a life saver for me for a few apps.

sudo apt-get install pavucontrol

@mfx9
Copy link

mfx9 commented Sep 30, 2018

I had the audio issue as well. You can work around it by installing and using pavucontrol to override the recording device for the application in real time. This has been a life saver for me for a few apps.

sudo apt-get install pavucontrol

How exactly did you use pavucontrol to get the sound working? I have it installed, but have no clue how to proceed. No sound in bluejeans. Awful app, btw.

@colinappnovation
Copy link

colinappnovation commented Oct 25, 2018

On Ubuntu 18.10

sudo ln -s libusb-1.0.so.0.1.0 libudev.so.0 to make BlueJeans work

@yurii-polishchuk
Copy link

Ubuntu 18.10 also requires
sudo apt-get install libgconf-2-4

@djgalloway
Copy link

Thanks for this. Has anyone been able to get http://bluejeans.com/$meeting_id links to open in the Desktop app? I had this set up in Fedora but don't remember what hack I had to apply to accomplish it.

@jefferyto
Copy link

If you add the --scripts option to alien, then it will also convert the post-install/pre-uninstall scripts, which will automatically set up the libudev symlink and also add a desktop launcher (and remove these automatically if you uninstall the package).

@scpike
Copy link

scpike commented Oct 10, 2019

Just adding a 👍 that --scripts works on ubuntu 18.04 as @jefferyto describes

@fracasula
Copy link
Author

fracasula commented Oct 10, 2019

I got no clue guys, I haven't run this script in quite a while now. If you guys updated it in any way please post the whole thing here and I can update the gist 👍 For now I'll just add the --scripts flag @scpike please let me know if there's more.

@scpike
Copy link

scpike commented Oct 10, 2019

@fracasula here's what I just did that seems to be working:

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
/opt/bluejeans/bluejeans

@davideicardi
Copy link

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

@gorzynsk
Copy link

gorzynsk commented Oct 28, 2019

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

@jingpengw
Copy link

I don't need to link the shared library file. directly works.
ubuntu 16.04

@obabec
Copy link

obabec commented Jun 22, 2020

Works on ubuntu 20.04 with no additional links. Thanks! Finally working bluejeans 👍

@alfeugds
Copy link

alfeugds commented Aug 5, 2020

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