Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leonardinius/3daacba119c4a2bc476aa77ea446ddb7 to your computer and use it in GitHub Desktop.
Save leonardinius/3daacba119c4a2bc476aa77ea446ddb7 to your computer and use it in GitHub Desktop.
BlueJeans rpm install on Debian

FYI, for those of us not running Debian based systems rather than RedHat, the BlueJeans RPM can be successfully installed via alien

Steps to install BlueJeans on Debian

  • Download BlueJeans RPM
  • Install alien package sudo apt-get install alien
  • Convert BlueJeans RPM to a DEB package sudo alien --to-deb bluejeans-*.rpm
  • Install resulting DEB sudo dpkg -i bluejeans_*.deb
  • Run BlueJeans with /opt/bluejeans/bluejeans-bin

You may get an error loading the expected udev library

/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 symlink from your installed libudev to the expected libudev.so.0 like so.

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

You should then be able to successfully run the bluejeans-bin application.

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