How to install bluejeans Meeting in Ubuntu
Bluejeans meeting for desktop is only available for MAC OS, Windows and Linux based on rpm (CentOS, Redhat etc)
For Ubuntu we need to convert the rpm to deb, for this we use the program called Alien(https://wiki.debian.org/Alien)
Step1: sudo apt-get install alien
Step2: Download the rpm from bluejeans website https://swdl.bluejeans.com/desktop/linux/1.37/1.37.22/bluejeans-1.37.22.x86_64.rpm and convert with following command.
sudo alien --to-deb bluejeans-1.37.22.x86_64.rpm
**replace the file with the downloaded rpm file name
Step3: From previous step deb file with the name "bluejeans_1.37.22-2_amd64.deb" was generated in my case. Now we will unpack the package and install with below command.
sudo dpkg -i bluejeans_1.37.22-2_amd64.deb
Step4: Start the blue jeans from below command
/opt/bluejeans/bluejeans-bin
Done.
**If you get error as below.
/opt/bluejeans/bluejeans-bin: error while loading shared libraries: libgconf-2.so.4: cannot open shared object file: No such file or directory
then,
1. sudo apt -y install libgconf2-4
then try again run /opt/bluejeans/bluejeans-bin
**If you get error as below.
/opt/bluejeans/bluejeans-bin: error while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory
Then, go to this website http://old-releases.ubuntu.com/ubuntu/pool/main/u/udev/
Download the latest of libudev0 example(libudev-dev_141-1.2_amd64.deb) then install with sudo dpkg -i /path/to/package
**If you get the error Package libudev0 is not installed.
then run:
1. sudo apt --fix-broken install
2. sudo apt install gdebi-core
3. wget http://mirrors.kernel.org/ubuntu/pool/main/u/udev/libudev0_175-0ubuntu9_amd64.deb
4. sudo gdebi libudev0_175-0ubuntu9_amd64.deb
Now finally run /opt/bluejeans/bluejeans-bin
Done.
For Ubuntu we need to convert the rpm to deb, for this we use the program called Alien(https://wiki.debian.org/Alien)
Step1: sudo apt-get install alien
Step2: Download the rpm from bluejeans website https://swdl.bluejeans.com/desktop/linux/1.37/1.37.22/bluejeans-1.37.22.x86_64.rpm and convert with following command.
sudo alien --to-deb bluejeans-1.37.22.x86_64.rpm
**replace the file with the downloaded rpm file name
Step3: From previous step deb file with the name "bluejeans_1.37.22-2_amd64.deb" was generated in my case. Now we will unpack the package and install with below command.
sudo dpkg -i bluejeans_1.37.22-2_amd64.deb
Step4: Start the blue jeans from below command
/opt/bluejeans/bluejeans-bin
Done.
**If you get error as below.
/opt/bluejeans/bluejeans-bin: error while loading shared libraries: libgconf-2.so.4: cannot open shared object file: No such file or directory
then,
1. sudo apt -y install libgconf2-4
then try again run /opt/bluejeans/bluejeans-bin
**If you get error as below.
/opt/bluejeans/bluejeans-bin: error while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory
Then, go to this website http://old-releases.ubuntu.com/ubuntu/pool/main/u/udev/
Download the latest of libudev0 example(libudev-dev_141-1.2_amd64.deb) then install with sudo dpkg -i /path/to/package
**If you get the error Package libudev0 is not installed.
then run:
1. sudo apt --fix-broken install
2. sudo apt install gdebi-core
3. wget http://mirrors.kernel.org/ubuntu/pool/main/u/udev/libudev0_175-0ubuntu9_amd64.deb
4. sudo gdebi libudev0_175-0ubuntu9_amd64.deb
Now finally run /opt/bluejeans/bluejeans-bin
Done.
Comments
Post a Comment