Steps to install BlueJeans on LinuxMint/Debian

1. Download BlueJeans RPM


2. Install alien package sudo apt-get install alien


3. Convert BlueJeans RPM to a DEB package sudo alien --to-deb bluejeans-*.rpm
 

4. Install resulting DEB sudo dpkg -i bluejeans_*.deb
 

5. Run BlueJeans with /opt/bluejeans/bluejeans-bin

We  may get an error loading the expected udev library


Error:
/opt/bluejeans/bluejeans-bin: error while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory

 
If that is the case, create a symbolic link from your installed libudev to the expected libudev.so.0 like below


himanshu@himanshu-31 ~ $ cd /lib/x86_64-linux-gnu/
himanshu@himanshu-31 /lib/x86_64-linux-gnu $ ls -ltr libudev.so*
lrwxrwxrwx 1 root root     16 Feb 14 05:00 libudev.so.1 -> libudev.so.1.6.4
-rw-r--r-- 1 root root 126840 Feb 14 05:01 libudev.so.1.6.4
lrwxrwxrwx 1 root root     16 Apr 29 06:36 libudev.so.0 -> libudev.so.1.6.4
sudo ln -s
libudev.so.1.6.4 libudev.so.0

6.Lanuch BlueJeans Again. It will open now.