Uruchomienie cisco webex w środowisku Linux.

  • By :
  • Category : Linux

 

Howto run cisco webex in Linux environment.

I have tested this on linux munt 18.01.

From article: https://gist.github.com/mshkrebtan/407786e334847544b40e7d6a8a53d247

Artykuł który uratował mi życie: https://gist.github.com/mshkrebtan/407786e334847544b40e7d6a8a53d247
W skrócie, trzeba zainstalować środowisko 32-bit (java + refox + dodatkowe biblioteki):

 

===================
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
Pobrać: http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-
2133155.html
sudo tar -xzvf jre*linux-i586.tar.gz -C /opt/webex/
sudo mv /opt/webex/jre* /opt/webex/jre
Pobrać: https://www.mozilla.org/en-US/firefox/organizations/all/
sudo mkdir /opt/webex/firefox/plugins/
ln -s \
/opt/webex/jre/lib/i386/libawt.so \
/opt/webex/jre/lib/i386/libjawt.so \
/opt/webex/jre/lib/i386/libnpjp2.so \
<- bez tego pakietu też działa
/opt/webex/firefox/plugins
http://3.127.215.50/
1/913.01.2018
labiol.xyz
sudo apt-get install \
libpangoxft-1.0-0:i386 \
libxft2:i386 \
libpangox-1.0-0:i386 \
libxmu6:i386 \
libxv1:i386 \
libasound2-plugins:i386
cat << 'EOF' | sudo tee /opt/webex/firefox.sh
#!/bin/bash
export ENV_HOME=/opt/webex
export FIREFOX_HOME=$ENV_HOME/firefox
export MOZ_PLUGIN_PATH=$ENV_HOME/firefox/plugins
export JAVA_HOME=$ENV_HOME/jre
export PATH=$JAVA_HOME/bin:$PATH
#export JPI_PLUGIN2_DEBUG=1
$FIREFOX_HOME/firefox --no-remote -P
EOF
sudo chmod a+x /opt/webex/firefox.sh
sudo ln -s /opt/webex/firefox.sh /usr/local/bin/firefox-i386
/opt/webex/jre/bin/javaws
ew. ( u mnie nie trzeba było ) ldd ~/.webex/T30_MC/*.so | grep "not found"
=============
No Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Linux
podcast

All podcast applications I have tested were quite OK(ish) – but I have always struggled with organizing podcasts, creating playlists, etc. It has always been challenging. Therefore, for me, it is more convenient to download podcasts as MP3s and manage them myself (in VLC, for example). There are many ways to do that, but my favorite …

Linux
jellyfin configuration in lxc container

Jellyfin is extremely useful software providing home streaming system. I am using it since a while for streaming my old ripped DVD, which I love to watch again and again. Jellyfin is opensource, cross platform as a server and as a client, including client for android and iOS. It is …

Linux
Various helpful Linux commands for file manipulations

Change file name for all files that contains “[any text]” substring to the same name without that.