WebEx desktop sharing on 64-bit Ubuntu
I realize that Webex does not support Ubuntu 11, however I have a website running on my machine that I need to demo for a client and he will use webex. I need to be able to use the "share desktop" feature to do this. Is there any dependable way (gksudo
, java installation, browser, anything) that lets you share your desktop?
I don't care if the audio crashes since we talk on the phone, and it's okay if it cuts out from time to time -- I just need him to be able to see it.
Alternatively, is there an easy way for me to switch to an ubuntu version that will allow me to share my desktop?
64-bit webex
add a comment |
I realize that Webex does not support Ubuntu 11, however I have a website running on my machine that I need to demo for a client and he will use webex. I need to be able to use the "share desktop" feature to do this. Is there any dependable way (gksudo
, java installation, browser, anything) that lets you share your desktop?
I don't care if the audio crashes since we talk on the phone, and it's okay if it cuts out from time to time -- I just need him to be able to see it.
Alternatively, is there an easy way for me to switch to an ubuntu version that will allow me to share my desktop?
64-bit webex
add a comment |
I realize that Webex does not support Ubuntu 11, however I have a website running on my machine that I need to demo for a client and he will use webex. I need to be able to use the "share desktop" feature to do this. Is there any dependable way (gksudo
, java installation, browser, anything) that lets you share your desktop?
I don't care if the audio crashes since we talk on the phone, and it's okay if it cuts out from time to time -- I just need him to be able to see it.
Alternatively, is there an easy way for me to switch to an ubuntu version that will allow me to share my desktop?
64-bit webex
I realize that Webex does not support Ubuntu 11, however I have a website running on my machine that I need to demo for a client and he will use webex. I need to be able to use the "share desktop" feature to do this. Is there any dependable way (gksudo
, java installation, browser, anything) that lets you share your desktop?
I don't care if the audio crashes since we talk on the phone, and it's okay if it cuts out from time to time -- I just need him to be able to see it.
Alternatively, is there an easy way for me to switch to an ubuntu version that will allow me to share my desktop?
64-bit webex
64-bit webex
edited Nov 6 '14 at 15:03
bmaupin
2,5962348
2,5962348
asked Mar 22 '12 at 13:28
Explosion PillsExplosion Pills
2542620
2542620
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
You could try ScreenLeap, which seems to have a very low setup overhead (it just downloads and runs a Java applet).
add a comment |
After much trial and error, I was able to get WebEx desktop sharing working in 64-bit Ubuntu just by installing a few packages:
Remove unnecessary packages that cause conflicts:
sudo apt remove icedtea-7-plugin:i386 icedtea-8-plugin:i386 icedtea-netx:i386
Install 32-bit Java, a necessary 32-bit library, the Java plugin, and Firefox:
Ubuntu 14.10+
sudo apt install openjdk-8-jre:i386 libxmu6:i386 icedtea-8-plugin firefox
Ubuntu 14.04 and below
sudo apt-get install openjdk-7-jre:i386 libxmu6:i386 icedtea-7-plugin firefox
Make sure the correct Java plugin is configured:
Ubuntu 14.10+
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Ubuntu 14.04 and below
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Close and re-open Firefox, and WebEx desktop sharing should work.
You must use Firefox. WebEx will not work on Google Chrome as Chrome for Linux no longer works with Java.- If you don't remove and install the exact packages listed above, WebEx will work, but desktop sharing will not work.
1
I had webex working on 12.04, but now I switched to 14.04 I get it to almost work. Everything except the actual screen sharing works. So I go into the meeting and see the other people, but I an unable to see the shared stream.
– balachmar
Apr 4 '14 at 14:26
If I get a chance I'll test on 14.04, but in the meantime I blogged about some other methods that may work if the above doesn't: Using WebEx desktop sharing on Ubuntu 64-bit
– bmaupin
Apr 4 '14 at 15:36
I have the exact same problem. Working fine with 14.04 but I can't see what other people is sharing.
– jmend
Aug 27 '14 at 18:02
@balachmar I just tested these same exact steps on Ubuntu 14.04, and they worked fine. It's very important you install the exact packages as listed. I tried with many other combinations, and none of them worked. If you don't have the exact packages installed, WebEx will work but desktop sharing will not work.
– bmaupin
Sep 5 '14 at 14:33
@jmend I have to create a separate comment so you get notified (meta.stackexchange.com/a/45296/206677), but read my previous comment
– bmaupin
Sep 5 '14 at 14:34
|
show 5 more comments
Thanks bmaupin! For me this also works on a freshly installed 64-bit Ubuntu 16.04 (no upgrade from older Ubuntu)
Enabled 32-bit support (see also: http://www.unixmen.com/enable-32-bit-support-64-bit-ubuntu-13-10-greater/):
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get upgrade
Installed openjdk and required plugins for Firefox
sudo apt-get -y install openjdk-8-jre:i386 libxmu6:i386 icedtea-8-plugin
Set correct Java plugin for Firefox
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Run WebEx
- Confirm all questions (trust WebEx domain, allow to use icedtea plugin, etc)
- Screen sharing works for me
- Audio does not yet work for me
add a comment |
So I've struggled with this for years, and finally have a solution.
- Install Ubuntu 32-bit. 64-bit simply won't work with Cisco's Webex Java plugin. I fought this for years, and finally gave up. I installed Ubuntu into a VM using
[testdrive][1]
. sudo apt-get install icedtea-6-plugin
- Join a Webex and have fun sharing your desktop!
add a comment |
Install Oracle Java to solve this issue
Press Ctrl+Alt+T on your keyboard to open a terminal window. When it opens, copy and paste the command below and hit enter. Input your user password when prompts and it will add the PPA repository into your system.
sudo add-apt-repository ppa:webupd8team/java
After that, update package lists via:
sudo apt-get update
To install Oracle Java 8, run:
sudo apt-get install oracle-java8-installer
Change the number 8 to 6 (or 7) in the code to install Java 6 (or 7).
While installation, you’ll be asked to agree the license and then the installer start downloading Java file from oracle website and install it on your system.
To set the default Java, run:
sudo apt-get install oracle-java8-set-default
Also change number 8 to the Java version you want.
2
I tried this and audio is broken, just like with IcedTea -- "The audio device is unaccessible now."
– eudoxos
May 13 '15 at 13:53
add a comment |
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f115094%2fwebex-desktop-sharing-on-64-bit-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could try ScreenLeap, which seems to have a very low setup overhead (it just downloads and runs a Java applet).
add a comment |
You could try ScreenLeap, which seems to have a very low setup overhead (it just downloads and runs a Java applet).
add a comment |
You could try ScreenLeap, which seems to have a very low setup overhead (it just downloads and runs a Java applet).
You could try ScreenLeap, which seems to have a very low setup overhead (it just downloads and runs a Java applet).
answered Mar 22 '12 at 14:21
AdrianAdrian
4,8961026
4,8961026
add a comment |
add a comment |
After much trial and error, I was able to get WebEx desktop sharing working in 64-bit Ubuntu just by installing a few packages:
Remove unnecessary packages that cause conflicts:
sudo apt remove icedtea-7-plugin:i386 icedtea-8-plugin:i386 icedtea-netx:i386
Install 32-bit Java, a necessary 32-bit library, the Java plugin, and Firefox:
Ubuntu 14.10+
sudo apt install openjdk-8-jre:i386 libxmu6:i386 icedtea-8-plugin firefox
Ubuntu 14.04 and below
sudo apt-get install openjdk-7-jre:i386 libxmu6:i386 icedtea-7-plugin firefox
Make sure the correct Java plugin is configured:
Ubuntu 14.10+
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Ubuntu 14.04 and below
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Close and re-open Firefox, and WebEx desktop sharing should work.
You must use Firefox. WebEx will not work on Google Chrome as Chrome for Linux no longer works with Java.- If you don't remove and install the exact packages listed above, WebEx will work, but desktop sharing will not work.
1
I had webex working on 12.04, but now I switched to 14.04 I get it to almost work. Everything except the actual screen sharing works. So I go into the meeting and see the other people, but I an unable to see the shared stream.
– balachmar
Apr 4 '14 at 14:26
If I get a chance I'll test on 14.04, but in the meantime I blogged about some other methods that may work if the above doesn't: Using WebEx desktop sharing on Ubuntu 64-bit
– bmaupin
Apr 4 '14 at 15:36
I have the exact same problem. Working fine with 14.04 but I can't see what other people is sharing.
– jmend
Aug 27 '14 at 18:02
@balachmar I just tested these same exact steps on Ubuntu 14.04, and they worked fine. It's very important you install the exact packages as listed. I tried with many other combinations, and none of them worked. If you don't have the exact packages installed, WebEx will work but desktop sharing will not work.
– bmaupin
Sep 5 '14 at 14:33
@jmend I have to create a separate comment so you get notified (meta.stackexchange.com/a/45296/206677), but read my previous comment
– bmaupin
Sep 5 '14 at 14:34
|
show 5 more comments
After much trial and error, I was able to get WebEx desktop sharing working in 64-bit Ubuntu just by installing a few packages:
Remove unnecessary packages that cause conflicts:
sudo apt remove icedtea-7-plugin:i386 icedtea-8-plugin:i386 icedtea-netx:i386
Install 32-bit Java, a necessary 32-bit library, the Java plugin, and Firefox:
Ubuntu 14.10+
sudo apt install openjdk-8-jre:i386 libxmu6:i386 icedtea-8-plugin firefox
Ubuntu 14.04 and below
sudo apt-get install openjdk-7-jre:i386 libxmu6:i386 icedtea-7-plugin firefox
Make sure the correct Java plugin is configured:
Ubuntu 14.10+
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Ubuntu 14.04 and below
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Close and re-open Firefox, and WebEx desktop sharing should work.
You must use Firefox. WebEx will not work on Google Chrome as Chrome for Linux no longer works with Java.- If you don't remove and install the exact packages listed above, WebEx will work, but desktop sharing will not work.
1
I had webex working on 12.04, but now I switched to 14.04 I get it to almost work. Everything except the actual screen sharing works. So I go into the meeting and see the other people, but I an unable to see the shared stream.
– balachmar
Apr 4 '14 at 14:26
If I get a chance I'll test on 14.04, but in the meantime I blogged about some other methods that may work if the above doesn't: Using WebEx desktop sharing on Ubuntu 64-bit
– bmaupin
Apr 4 '14 at 15:36
I have the exact same problem. Working fine with 14.04 but I can't see what other people is sharing.
– jmend
Aug 27 '14 at 18:02
@balachmar I just tested these same exact steps on Ubuntu 14.04, and they worked fine. It's very important you install the exact packages as listed. I tried with many other combinations, and none of them worked. If you don't have the exact packages installed, WebEx will work but desktop sharing will not work.
– bmaupin
Sep 5 '14 at 14:33
@jmend I have to create a separate comment so you get notified (meta.stackexchange.com/a/45296/206677), but read my previous comment
– bmaupin
Sep 5 '14 at 14:34
|
show 5 more comments
After much trial and error, I was able to get WebEx desktop sharing working in 64-bit Ubuntu just by installing a few packages:
Remove unnecessary packages that cause conflicts:
sudo apt remove icedtea-7-plugin:i386 icedtea-8-plugin:i386 icedtea-netx:i386
Install 32-bit Java, a necessary 32-bit library, the Java plugin, and Firefox:
Ubuntu 14.10+
sudo apt install openjdk-8-jre:i386 libxmu6:i386 icedtea-8-plugin firefox
Ubuntu 14.04 and below
sudo apt-get install openjdk-7-jre:i386 libxmu6:i386 icedtea-7-plugin firefox
Make sure the correct Java plugin is configured:
Ubuntu 14.10+
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Ubuntu 14.04 and below
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Close and re-open Firefox, and WebEx desktop sharing should work.
You must use Firefox. WebEx will not work on Google Chrome as Chrome for Linux no longer works with Java.- If you don't remove and install the exact packages listed above, WebEx will work, but desktop sharing will not work.
After much trial and error, I was able to get WebEx desktop sharing working in 64-bit Ubuntu just by installing a few packages:
Remove unnecessary packages that cause conflicts:
sudo apt remove icedtea-7-plugin:i386 icedtea-8-plugin:i386 icedtea-netx:i386
Install 32-bit Java, a necessary 32-bit library, the Java plugin, and Firefox:
Ubuntu 14.10+
sudo apt install openjdk-8-jre:i386 libxmu6:i386 icedtea-8-plugin firefox
Ubuntu 14.04 and below
sudo apt-get install openjdk-7-jre:i386 libxmu6:i386 icedtea-7-plugin firefox
Make sure the correct Java plugin is configured:
Ubuntu 14.10+
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Ubuntu 14.04 and below
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Close and re-open Firefox, and WebEx desktop sharing should work.
You must use Firefox. WebEx will not work on Google Chrome as Chrome for Linux no longer works with Java.- If you don't remove and install the exact packages listed above, WebEx will work, but desktop sharing will not work.
edited Mar 19 at 14:45
answered Oct 21 '13 at 23:38
bmaupinbmaupin
2,5962348
2,5962348
1
I had webex working on 12.04, but now I switched to 14.04 I get it to almost work. Everything except the actual screen sharing works. So I go into the meeting and see the other people, but I an unable to see the shared stream.
– balachmar
Apr 4 '14 at 14:26
If I get a chance I'll test on 14.04, but in the meantime I blogged about some other methods that may work if the above doesn't: Using WebEx desktop sharing on Ubuntu 64-bit
– bmaupin
Apr 4 '14 at 15:36
I have the exact same problem. Working fine with 14.04 but I can't see what other people is sharing.
– jmend
Aug 27 '14 at 18:02
@balachmar I just tested these same exact steps on Ubuntu 14.04, and they worked fine. It's very important you install the exact packages as listed. I tried with many other combinations, and none of them worked. If you don't have the exact packages installed, WebEx will work but desktop sharing will not work.
– bmaupin
Sep 5 '14 at 14:33
@jmend I have to create a separate comment so you get notified (meta.stackexchange.com/a/45296/206677), but read my previous comment
– bmaupin
Sep 5 '14 at 14:34
|
show 5 more comments
1
I had webex working on 12.04, but now I switched to 14.04 I get it to almost work. Everything except the actual screen sharing works. So I go into the meeting and see the other people, but I an unable to see the shared stream.
– balachmar
Apr 4 '14 at 14:26
If I get a chance I'll test on 14.04, but in the meantime I blogged about some other methods that may work if the above doesn't: Using WebEx desktop sharing on Ubuntu 64-bit
– bmaupin
Apr 4 '14 at 15:36
I have the exact same problem. Working fine with 14.04 but I can't see what other people is sharing.
– jmend
Aug 27 '14 at 18:02
@balachmar I just tested these same exact steps on Ubuntu 14.04, and they worked fine. It's very important you install the exact packages as listed. I tried with many other combinations, and none of them worked. If you don't have the exact packages installed, WebEx will work but desktop sharing will not work.
– bmaupin
Sep 5 '14 at 14:33
@jmend I have to create a separate comment so you get notified (meta.stackexchange.com/a/45296/206677), but read my previous comment
– bmaupin
Sep 5 '14 at 14:34
1
1
I had webex working on 12.04, but now I switched to 14.04 I get it to almost work. Everything except the actual screen sharing works. So I go into the meeting and see the other people, but I an unable to see the shared stream.
– balachmar
Apr 4 '14 at 14:26
I had webex working on 12.04, but now I switched to 14.04 I get it to almost work. Everything except the actual screen sharing works. So I go into the meeting and see the other people, but I an unable to see the shared stream.
– balachmar
Apr 4 '14 at 14:26
If I get a chance I'll test on 14.04, but in the meantime I blogged about some other methods that may work if the above doesn't: Using WebEx desktop sharing on Ubuntu 64-bit
– bmaupin
Apr 4 '14 at 15:36
If I get a chance I'll test on 14.04, but in the meantime I blogged about some other methods that may work if the above doesn't: Using WebEx desktop sharing on Ubuntu 64-bit
– bmaupin
Apr 4 '14 at 15:36
I have the exact same problem. Working fine with 14.04 but I can't see what other people is sharing.
– jmend
Aug 27 '14 at 18:02
I have the exact same problem. Working fine with 14.04 but I can't see what other people is sharing.
– jmend
Aug 27 '14 at 18:02
@balachmar I just tested these same exact steps on Ubuntu 14.04, and they worked fine. It's very important you install the exact packages as listed. I tried with many other combinations, and none of them worked. If you don't have the exact packages installed, WebEx will work but desktop sharing will not work.
– bmaupin
Sep 5 '14 at 14:33
@balachmar I just tested these same exact steps on Ubuntu 14.04, and they worked fine. It's very important you install the exact packages as listed. I tried with many other combinations, and none of them worked. If you don't have the exact packages installed, WebEx will work but desktop sharing will not work.
– bmaupin
Sep 5 '14 at 14:33
@jmend I have to create a separate comment so you get notified (meta.stackexchange.com/a/45296/206677), but read my previous comment
– bmaupin
Sep 5 '14 at 14:34
@jmend I have to create a separate comment so you get notified (meta.stackexchange.com/a/45296/206677), but read my previous comment
– bmaupin
Sep 5 '14 at 14:34
|
show 5 more comments
Thanks bmaupin! For me this also works on a freshly installed 64-bit Ubuntu 16.04 (no upgrade from older Ubuntu)
Enabled 32-bit support (see also: http://www.unixmen.com/enable-32-bit-support-64-bit-ubuntu-13-10-greater/):
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get upgrade
Installed openjdk and required plugins for Firefox
sudo apt-get -y install openjdk-8-jre:i386 libxmu6:i386 icedtea-8-plugin
Set correct Java plugin for Firefox
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Run WebEx
- Confirm all questions (trust WebEx domain, allow to use icedtea plugin, etc)
- Screen sharing works for me
- Audio does not yet work for me
add a comment |
Thanks bmaupin! For me this also works on a freshly installed 64-bit Ubuntu 16.04 (no upgrade from older Ubuntu)
Enabled 32-bit support (see also: http://www.unixmen.com/enable-32-bit-support-64-bit-ubuntu-13-10-greater/):
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get upgrade
Installed openjdk and required plugins for Firefox
sudo apt-get -y install openjdk-8-jre:i386 libxmu6:i386 icedtea-8-plugin
Set correct Java plugin for Firefox
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Run WebEx
- Confirm all questions (trust WebEx domain, allow to use icedtea plugin, etc)
- Screen sharing works for me
- Audio does not yet work for me
add a comment |
Thanks bmaupin! For me this also works on a freshly installed 64-bit Ubuntu 16.04 (no upgrade from older Ubuntu)
Enabled 32-bit support (see also: http://www.unixmen.com/enable-32-bit-support-64-bit-ubuntu-13-10-greater/):
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get upgrade
Installed openjdk and required plugins for Firefox
sudo apt-get -y install openjdk-8-jre:i386 libxmu6:i386 icedtea-8-plugin
Set correct Java plugin for Firefox
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Run WebEx
- Confirm all questions (trust WebEx domain, allow to use icedtea plugin, etc)
- Screen sharing works for me
- Audio does not yet work for me
Thanks bmaupin! For me this also works on a freshly installed 64-bit Ubuntu 16.04 (no upgrade from older Ubuntu)
Enabled 32-bit support (see also: http://www.unixmen.com/enable-32-bit-support-64-bit-ubuntu-13-10-greater/):
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get upgrade
Installed openjdk and required plugins for Firefox
sudo apt-get -y install openjdk-8-jre:i386 libxmu6:i386 icedtea-8-plugin
Set correct Java plugin for Firefox
sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Run WebEx
- Confirm all questions (trust WebEx domain, allow to use icedtea plugin, etc)
- Screen sharing works for me
- Audio does not yet work for me
answered May 20 '16 at 12:30
Marvin SteijaertMarvin Steijaert
7111
7111
add a comment |
add a comment |
So I've struggled with this for years, and finally have a solution.
- Install Ubuntu 32-bit. 64-bit simply won't work with Cisco's Webex Java plugin. I fought this for years, and finally gave up. I installed Ubuntu into a VM using
[testdrive][1]
. sudo apt-get install icedtea-6-plugin
- Join a Webex and have fun sharing your desktop!
add a comment |
So I've struggled with this for years, and finally have a solution.
- Install Ubuntu 32-bit. 64-bit simply won't work with Cisco's Webex Java plugin. I fought this for years, and finally gave up. I installed Ubuntu into a VM using
[testdrive][1]
. sudo apt-get install icedtea-6-plugin
- Join a Webex and have fun sharing your desktop!
add a comment |
So I've struggled with this for years, and finally have a solution.
- Install Ubuntu 32-bit. 64-bit simply won't work with Cisco's Webex Java plugin. I fought this for years, and finally gave up. I installed Ubuntu into a VM using
[testdrive][1]
. sudo apt-get install icedtea-6-plugin
- Join a Webex and have fun sharing your desktop!
So I've struggled with this for years, and finally have a solution.
- Install Ubuntu 32-bit. 64-bit simply won't work with Cisco's Webex Java plugin. I fought this for years, and finally gave up. I installed Ubuntu into a VM using
[testdrive][1]
. sudo apt-get install icedtea-6-plugin
- Join a Webex and have fun sharing your desktop!
answered Feb 19 '13 at 16:14
Dustin KirklandDustin Kirkland
11.1k26085
11.1k26085
add a comment |
add a comment |
Install Oracle Java to solve this issue
Press Ctrl+Alt+T on your keyboard to open a terminal window. When it opens, copy and paste the command below and hit enter. Input your user password when prompts and it will add the PPA repository into your system.
sudo add-apt-repository ppa:webupd8team/java
After that, update package lists via:
sudo apt-get update
To install Oracle Java 8, run:
sudo apt-get install oracle-java8-installer
Change the number 8 to 6 (or 7) in the code to install Java 6 (or 7).
While installation, you’ll be asked to agree the license and then the installer start downloading Java file from oracle website and install it on your system.
To set the default Java, run:
sudo apt-get install oracle-java8-set-default
Also change number 8 to the Java version you want.
2
I tried this and audio is broken, just like with IcedTea -- "The audio device is unaccessible now."
– eudoxos
May 13 '15 at 13:53
add a comment |
Install Oracle Java to solve this issue
Press Ctrl+Alt+T on your keyboard to open a terminal window. When it opens, copy and paste the command below and hit enter. Input your user password when prompts and it will add the PPA repository into your system.
sudo add-apt-repository ppa:webupd8team/java
After that, update package lists via:
sudo apt-get update
To install Oracle Java 8, run:
sudo apt-get install oracle-java8-installer
Change the number 8 to 6 (or 7) in the code to install Java 6 (or 7).
While installation, you’ll be asked to agree the license and then the installer start downloading Java file from oracle website and install it on your system.
To set the default Java, run:
sudo apt-get install oracle-java8-set-default
Also change number 8 to the Java version you want.
2
I tried this and audio is broken, just like with IcedTea -- "The audio device is unaccessible now."
– eudoxos
May 13 '15 at 13:53
add a comment |
Install Oracle Java to solve this issue
Press Ctrl+Alt+T on your keyboard to open a terminal window. When it opens, copy and paste the command below and hit enter. Input your user password when prompts and it will add the PPA repository into your system.
sudo add-apt-repository ppa:webupd8team/java
After that, update package lists via:
sudo apt-get update
To install Oracle Java 8, run:
sudo apt-get install oracle-java8-installer
Change the number 8 to 6 (or 7) in the code to install Java 6 (or 7).
While installation, you’ll be asked to agree the license and then the installer start downloading Java file from oracle website and install it on your system.
To set the default Java, run:
sudo apt-get install oracle-java8-set-default
Also change number 8 to the Java version you want.
Install Oracle Java to solve this issue
Press Ctrl+Alt+T on your keyboard to open a terminal window. When it opens, copy and paste the command below and hit enter. Input your user password when prompts and it will add the PPA repository into your system.
sudo add-apt-repository ppa:webupd8team/java
After that, update package lists via:
sudo apt-get update
To install Oracle Java 8, run:
sudo apt-get install oracle-java8-installer
Change the number 8 to 6 (or 7) in the code to install Java 6 (or 7).
While installation, you’ll be asked to agree the license and then the installer start downloading Java file from oracle website and install it on your system.
To set the default Java, run:
sudo apt-get install oracle-java8-set-default
Also change number 8 to the Java version you want.
edited Oct 6 '14 at 22:08
muru
1
1
answered Sep 30 '14 at 2:35
EldhoEldho
6011810
6011810
2
I tried this and audio is broken, just like with IcedTea -- "The audio device is unaccessible now."
– eudoxos
May 13 '15 at 13:53
add a comment |
2
I tried this and audio is broken, just like with IcedTea -- "The audio device is unaccessible now."
– eudoxos
May 13 '15 at 13:53
2
2
I tried this and audio is broken, just like with IcedTea -- "The audio device is unaccessible now."
– eudoxos
May 13 '15 at 13:53
I tried this and audio is broken, just like with IcedTea -- "The audio device is unaccessible now."
– eudoxos
May 13 '15 at 13:53
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f115094%2fwebex-desktop-sharing-on-64-bit-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown