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://labiol.xyz/
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.

Free(BSD)
Search for duplicated files

This will be short (but hopefully I will find more time to show entire process to search duplicated files together with some examples). In case you are searching for duplicated files I can recommend two software which actually rocks in openSource world

Linux
2
“Gaming laptop”, steam link and rustdesk.

Not really related to this article, but just wanted to describe the situation.  Most of the time I am working on Linux or Mac. Not a big deal, but last year we bought my daughter a kind of gaming laptop. I am saying kind of, because IMHO there is no …

Azure
NFS issue, cannot be mounted or is not visible

The same kind of issue I have encountered numerous times while working across different environments and with various customers. The problem with NFS mounts connected from remote locations is so common. This issue extends beyond communication solely over WAN and also include connections between datacenters (DC) where we lack control …