Skip to content

Instantly share code, notes, and snippets.

@tchalvak
Forked from johnduarte/bluejeans_rpm_via_alien.md
Last active January 19, 2018 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tchalvak/3ef3b401a7a2b3b5d0f18948fd372923 to your computer and use it in GitHub Desktop.
Save tchalvak/3ef3b401a7a2b3b5d0f18948fd372923 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 --scripts 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 (you may want to check your installed version first)

cd /lib/x86_64-linux-gnu/
ls libudev.so.*

Then link to whatever version you have installed, e.g.

sudo ln -s libudev.so.1.6.5 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