How to install 32 bit Iceweasel/Firefox and Java plugin so that webex audio works on Debian 64 bit?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
Colleagues would like to communicate in a videoconference using Cisco Webex. This requires the Java plugin for Firefox/Iceweasel. Based on this blog, I installed the web browser plugin based on OpenJDK 7 and IcedTea:
apt-get install icedtea-7-plugin
I have access to the webex audio menu, but there is no sound. Webex uses a proprietary 32 bit sound application, according to this page concerning Fedora the only fix to the sound issue seems to install a 32 bit version of Firefox / Iceweasel and of the java plugin.
I enabled Multiarch as explained in this Debian HowTo:
dpkg --add-architecture i386
I removed the 64 bit version of the java plugin (to avoid the error trying to overwrite shared '/usr/bin/policyeditor', which is different from other instances of package icedtea-netx:i386
)
apt-get remove icedtea-7-plugin
Then I installed 32 bit version of packages:
apt-get install iceweasel:i386
apt-get install icedtea-7-plugin:i386
apt-get install binutils:i386 # required for flashplugin
apt-get install flashplugin-nonfree:i386
apt-get install flashplugin-nonfree-extrasound:i386
I tried installing a few other 32 bit packages without success.Fedora user negativo17 suggests installing Mesa’s libEG due to 2014 Mesa updates. I though It might help to install xserver-xorg-core
for the 32 bit architecture. Somehow one of these steps broke the x-server:
apt-get install libegl1-mesa:i386 # suggested by Fedora user
apt-get install libepoxy0:i386 # for xorg
apt-get install xserver-xorg-core:i386 # because libegl1 reverse depends on it and I guessed the window system should also be in 32 bit for the above to work.
Now that iceweasel and the java plugin icedtea are installed in 32 bit. The Java webex interface starts but sound is still not working and I don't have access to the webex audio menu. Screen sharing is also not available.
Fedora user negativo17 suggests installing packages for the i386 architecture.
What architecture is recommended, should it be i386 or i686?
debian java 32-vs-64-bit iceweasel webex
|
show 1 more comment
Colleagues would like to communicate in a videoconference using Cisco Webex. This requires the Java plugin for Firefox/Iceweasel. Based on this blog, I installed the web browser plugin based on OpenJDK 7 and IcedTea:
apt-get install icedtea-7-plugin
I have access to the webex audio menu, but there is no sound. Webex uses a proprietary 32 bit sound application, according to this page concerning Fedora the only fix to the sound issue seems to install a 32 bit version of Firefox / Iceweasel and of the java plugin.
I enabled Multiarch as explained in this Debian HowTo:
dpkg --add-architecture i386
I removed the 64 bit version of the java plugin (to avoid the error trying to overwrite shared '/usr/bin/policyeditor', which is different from other instances of package icedtea-netx:i386
)
apt-get remove icedtea-7-plugin
Then I installed 32 bit version of packages:
apt-get install iceweasel:i386
apt-get install icedtea-7-plugin:i386
apt-get install binutils:i386 # required for flashplugin
apt-get install flashplugin-nonfree:i386
apt-get install flashplugin-nonfree-extrasound:i386
I tried installing a few other 32 bit packages without success.Fedora user negativo17 suggests installing Mesa’s libEG due to 2014 Mesa updates. I though It might help to install xserver-xorg-core
for the 32 bit architecture. Somehow one of these steps broke the x-server:
apt-get install libegl1-mesa:i386 # suggested by Fedora user
apt-get install libepoxy0:i386 # for xorg
apt-get install xserver-xorg-core:i386 # because libegl1 reverse depends on it and I guessed the window system should also be in 32 bit for the above to work.
Now that iceweasel and the java plugin icedtea are installed in 32 bit. The Java webex interface starts but sound is still not working and I don't have access to the webex audio menu. Screen sharing is also not available.
Fedora user negativo17 suggests installing packages for the i386 architecture.
What architecture is recommended, should it be i386 or i686?
debian java 32-vs-64-bit iceweasel webex
It sounds like you have a solution. There is no issue with installing 32 bit applications on 64 bit Debian, and it looks like you know how to do that. What do you need help with?
– fixer1234
Jun 9 '15 at 8:52
I need help with starting the 32 bit programs. the command "iceweasel" starts the 64 bit version of the program. And I might also need an alternative approach to install the non free 32 bit flash plugin as it is entering in conflict with the 64 bit version.
– Paul Rougieux
Jun 9 '15 at 13:38
1
An alternative may be to isolate the 32-bit programs and libraries in a chroot (this is the 'old-fashioned' pre-multiarch way). Theschroot
package may be of help with this.
– Toby Speight
Jun 9 '15 at 13:43
Just uninstall the 64 bit programs and install the 32 bit programs.
– fixer1234
Jun 9 '15 at 19:15
@fixer1234 that is what I did, replacining 64 bit Iceseasel and the java plugin by the 32 bit version. Then adding more and more 32 bit libraries, until I finally broke my x server. Still without success concerning webex sound.
– Paul Rougieux
Jun 11 '15 at 8:24
|
show 1 more comment
Colleagues would like to communicate in a videoconference using Cisco Webex. This requires the Java plugin for Firefox/Iceweasel. Based on this blog, I installed the web browser plugin based on OpenJDK 7 and IcedTea:
apt-get install icedtea-7-plugin
I have access to the webex audio menu, but there is no sound. Webex uses a proprietary 32 bit sound application, according to this page concerning Fedora the only fix to the sound issue seems to install a 32 bit version of Firefox / Iceweasel and of the java plugin.
I enabled Multiarch as explained in this Debian HowTo:
dpkg --add-architecture i386
I removed the 64 bit version of the java plugin (to avoid the error trying to overwrite shared '/usr/bin/policyeditor', which is different from other instances of package icedtea-netx:i386
)
apt-get remove icedtea-7-plugin
Then I installed 32 bit version of packages:
apt-get install iceweasel:i386
apt-get install icedtea-7-plugin:i386
apt-get install binutils:i386 # required for flashplugin
apt-get install flashplugin-nonfree:i386
apt-get install flashplugin-nonfree-extrasound:i386
I tried installing a few other 32 bit packages without success.Fedora user negativo17 suggests installing Mesa’s libEG due to 2014 Mesa updates. I though It might help to install xserver-xorg-core
for the 32 bit architecture. Somehow one of these steps broke the x-server:
apt-get install libegl1-mesa:i386 # suggested by Fedora user
apt-get install libepoxy0:i386 # for xorg
apt-get install xserver-xorg-core:i386 # because libegl1 reverse depends on it and I guessed the window system should also be in 32 bit for the above to work.
Now that iceweasel and the java plugin icedtea are installed in 32 bit. The Java webex interface starts but sound is still not working and I don't have access to the webex audio menu. Screen sharing is also not available.
Fedora user negativo17 suggests installing packages for the i386 architecture.
What architecture is recommended, should it be i386 or i686?
debian java 32-vs-64-bit iceweasel webex
Colleagues would like to communicate in a videoconference using Cisco Webex. This requires the Java plugin for Firefox/Iceweasel. Based on this blog, I installed the web browser plugin based on OpenJDK 7 and IcedTea:
apt-get install icedtea-7-plugin
I have access to the webex audio menu, but there is no sound. Webex uses a proprietary 32 bit sound application, according to this page concerning Fedora the only fix to the sound issue seems to install a 32 bit version of Firefox / Iceweasel and of the java plugin.
I enabled Multiarch as explained in this Debian HowTo:
dpkg --add-architecture i386
I removed the 64 bit version of the java plugin (to avoid the error trying to overwrite shared '/usr/bin/policyeditor', which is different from other instances of package icedtea-netx:i386
)
apt-get remove icedtea-7-plugin
Then I installed 32 bit version of packages:
apt-get install iceweasel:i386
apt-get install icedtea-7-plugin:i386
apt-get install binutils:i386 # required for flashplugin
apt-get install flashplugin-nonfree:i386
apt-get install flashplugin-nonfree-extrasound:i386
I tried installing a few other 32 bit packages without success.Fedora user negativo17 suggests installing Mesa’s libEG due to 2014 Mesa updates. I though It might help to install xserver-xorg-core
for the 32 bit architecture. Somehow one of these steps broke the x-server:
apt-get install libegl1-mesa:i386 # suggested by Fedora user
apt-get install libepoxy0:i386 # for xorg
apt-get install xserver-xorg-core:i386 # because libegl1 reverse depends on it and I guessed the window system should also be in 32 bit for the above to work.
Now that iceweasel and the java plugin icedtea are installed in 32 bit. The Java webex interface starts but sound is still not working and I don't have access to the webex audio menu. Screen sharing is also not available.
Fedora user negativo17 suggests installing packages for the i386 architecture.
What architecture is recommended, should it be i386 or i686?
debian java 32-vs-64-bit iceweasel webex
debian java 32-vs-64-bit iceweasel webex
edited Jun 10 '15 at 12:17
Paul Rougieux
asked Jun 9 '15 at 8:42
Paul RougieuxPaul Rougieux
87315
87315
It sounds like you have a solution. There is no issue with installing 32 bit applications on 64 bit Debian, and it looks like you know how to do that. What do you need help with?
– fixer1234
Jun 9 '15 at 8:52
I need help with starting the 32 bit programs. the command "iceweasel" starts the 64 bit version of the program. And I might also need an alternative approach to install the non free 32 bit flash plugin as it is entering in conflict with the 64 bit version.
– Paul Rougieux
Jun 9 '15 at 13:38
1
An alternative may be to isolate the 32-bit programs and libraries in a chroot (this is the 'old-fashioned' pre-multiarch way). Theschroot
package may be of help with this.
– Toby Speight
Jun 9 '15 at 13:43
Just uninstall the 64 bit programs and install the 32 bit programs.
– fixer1234
Jun 9 '15 at 19:15
@fixer1234 that is what I did, replacining 64 bit Iceseasel and the java plugin by the 32 bit version. Then adding more and more 32 bit libraries, until I finally broke my x server. Still without success concerning webex sound.
– Paul Rougieux
Jun 11 '15 at 8:24
|
show 1 more comment
It sounds like you have a solution. There is no issue with installing 32 bit applications on 64 bit Debian, and it looks like you know how to do that. What do you need help with?
– fixer1234
Jun 9 '15 at 8:52
I need help with starting the 32 bit programs. the command "iceweasel" starts the 64 bit version of the program. And I might also need an alternative approach to install the non free 32 bit flash plugin as it is entering in conflict with the 64 bit version.
– Paul Rougieux
Jun 9 '15 at 13:38
1
An alternative may be to isolate the 32-bit programs and libraries in a chroot (this is the 'old-fashioned' pre-multiarch way). Theschroot
package may be of help with this.
– Toby Speight
Jun 9 '15 at 13:43
Just uninstall the 64 bit programs and install the 32 bit programs.
– fixer1234
Jun 9 '15 at 19:15
@fixer1234 that is what I did, replacining 64 bit Iceseasel and the java plugin by the 32 bit version. Then adding more and more 32 bit libraries, until I finally broke my x server. Still without success concerning webex sound.
– Paul Rougieux
Jun 11 '15 at 8:24
It sounds like you have a solution. There is no issue with installing 32 bit applications on 64 bit Debian, and it looks like you know how to do that. What do you need help with?
– fixer1234
Jun 9 '15 at 8:52
It sounds like you have a solution. There is no issue with installing 32 bit applications on 64 bit Debian, and it looks like you know how to do that. What do you need help with?
– fixer1234
Jun 9 '15 at 8:52
I need help with starting the 32 bit programs. the command "iceweasel" starts the 64 bit version of the program. And I might also need an alternative approach to install the non free 32 bit flash plugin as it is entering in conflict with the 64 bit version.
– Paul Rougieux
Jun 9 '15 at 13:38
I need help with starting the 32 bit programs. the command "iceweasel" starts the 64 bit version of the program. And I might also need an alternative approach to install the non free 32 bit flash plugin as it is entering in conflict with the 64 bit version.
– Paul Rougieux
Jun 9 '15 at 13:38
1
1
An alternative may be to isolate the 32-bit programs and libraries in a chroot (this is the 'old-fashioned' pre-multiarch way). The
schroot
package may be of help with this.– Toby Speight
Jun 9 '15 at 13:43
An alternative may be to isolate the 32-bit programs and libraries in a chroot (this is the 'old-fashioned' pre-multiarch way). The
schroot
package may be of help with this.– Toby Speight
Jun 9 '15 at 13:43
Just uninstall the 64 bit programs and install the 32 bit programs.
– fixer1234
Jun 9 '15 at 19:15
Just uninstall the 64 bit programs and install the 32 bit programs.
– fixer1234
Jun 9 '15 at 19:15
@fixer1234 that is what I did, replacining 64 bit Iceseasel and the java plugin by the 32 bit version. Then adding more and more 32 bit libraries, until I finally broke my x server. Still without success concerning webex sound.
– Paul Rougieux
Jun 11 '15 at 8:24
@fixer1234 that is what I did, replacining 64 bit Iceseasel and the java plugin by the 32 bit version. Then adding more and more 32 bit libraries, until I finally broke my x server. Still without success concerning webex sound.
– Paul Rougieux
Jun 11 '15 at 8:24
|
show 1 more comment
1 Answer
1
active
oldest
votes
As the comments suggest, the usual way is to replace your iceweasel:amd64
package with the iceweasel:i386
package and let the dependencies work through. This is fine if all the dependent libraries are correctly multiarch compatible, but in cases where this doesn't work, a chroot install may be the best option.
To set up such a chroot the Debian way:
- Ensure you are running a kernel that can execute IA32 ELF binaries.
- Install
schroot
andcdebootstrap
. - Create a directory of your choice (I'll use
/usr/local/roots/i386
) and runcdebootstrap -a i386 -f minimal --include "iceweasel" testing /usr/local/roots/i386
(replacetesting
withsid
orjessie
or your choice of Debian release; add any other options you need). - Configure
schroot
to use this directory as a chroot (in/etc/schroot/chroot.d/i386
):[i386]
type=directory
directory=/usr/local/roots/i386
profile=default
Thedefault
profile should already have bind mounts for/home
etc - check in/etc/schroot/default/fstab
to be sure.
Now you should be able to change into the schroot (schroot -c i386
) and then start Iceweasel (or sudo aptitude install
additional packages); you can start it in the chroot directory all in one command: schroot -c i386 iceweasel
.
There's one caveat to all the above: iceweasel
is actually a wrapper script, that looks for a running Iceweasel connected to $DISPLAY
, and if so, uses its remote control protocol to open a new window. So if you're running the 64-bit Iceweasel, then that will be invoked even though you thought you were starting a new 32-bit instance. So you will need to close any native instances before starting the one in your chroot.
Thank you, I will try to install schroot over the summer and will comment back if it works. I have replaced the webex meeting by a phone meeting for the moment.
– Paul Rougieux
Jun 16 '15 at 7:32
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f925581%2fhow-to-install-32-bit-iceweasel-firefox-and-java-plugin-so-that-webex-audio-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
As the comments suggest, the usual way is to replace your iceweasel:amd64
package with the iceweasel:i386
package and let the dependencies work through. This is fine if all the dependent libraries are correctly multiarch compatible, but in cases where this doesn't work, a chroot install may be the best option.
To set up such a chroot the Debian way:
- Ensure you are running a kernel that can execute IA32 ELF binaries.
- Install
schroot
andcdebootstrap
. - Create a directory of your choice (I'll use
/usr/local/roots/i386
) and runcdebootstrap -a i386 -f minimal --include "iceweasel" testing /usr/local/roots/i386
(replacetesting
withsid
orjessie
or your choice of Debian release; add any other options you need). - Configure
schroot
to use this directory as a chroot (in/etc/schroot/chroot.d/i386
):[i386]
type=directory
directory=/usr/local/roots/i386
profile=default
Thedefault
profile should already have bind mounts for/home
etc - check in/etc/schroot/default/fstab
to be sure.
Now you should be able to change into the schroot (schroot -c i386
) and then start Iceweasel (or sudo aptitude install
additional packages); you can start it in the chroot directory all in one command: schroot -c i386 iceweasel
.
There's one caveat to all the above: iceweasel
is actually a wrapper script, that looks for a running Iceweasel connected to $DISPLAY
, and if so, uses its remote control protocol to open a new window. So if you're running the 64-bit Iceweasel, then that will be invoked even though you thought you were starting a new 32-bit instance. So you will need to close any native instances before starting the one in your chroot.
Thank you, I will try to install schroot over the summer and will comment back if it works. I have replaced the webex meeting by a phone meeting for the moment.
– Paul Rougieux
Jun 16 '15 at 7:32
add a comment |
As the comments suggest, the usual way is to replace your iceweasel:amd64
package with the iceweasel:i386
package and let the dependencies work through. This is fine if all the dependent libraries are correctly multiarch compatible, but in cases where this doesn't work, a chroot install may be the best option.
To set up such a chroot the Debian way:
- Ensure you are running a kernel that can execute IA32 ELF binaries.
- Install
schroot
andcdebootstrap
. - Create a directory of your choice (I'll use
/usr/local/roots/i386
) and runcdebootstrap -a i386 -f minimal --include "iceweasel" testing /usr/local/roots/i386
(replacetesting
withsid
orjessie
or your choice of Debian release; add any other options you need). - Configure
schroot
to use this directory as a chroot (in/etc/schroot/chroot.d/i386
):[i386]
type=directory
directory=/usr/local/roots/i386
profile=default
Thedefault
profile should already have bind mounts for/home
etc - check in/etc/schroot/default/fstab
to be sure.
Now you should be able to change into the schroot (schroot -c i386
) and then start Iceweasel (or sudo aptitude install
additional packages); you can start it in the chroot directory all in one command: schroot -c i386 iceweasel
.
There's one caveat to all the above: iceweasel
is actually a wrapper script, that looks for a running Iceweasel connected to $DISPLAY
, and if so, uses its remote control protocol to open a new window. So if you're running the 64-bit Iceweasel, then that will be invoked even though you thought you were starting a new 32-bit instance. So you will need to close any native instances before starting the one in your chroot.
Thank you, I will try to install schroot over the summer and will comment back if it works. I have replaced the webex meeting by a phone meeting for the moment.
– Paul Rougieux
Jun 16 '15 at 7:32
add a comment |
As the comments suggest, the usual way is to replace your iceweasel:amd64
package with the iceweasel:i386
package and let the dependencies work through. This is fine if all the dependent libraries are correctly multiarch compatible, but in cases where this doesn't work, a chroot install may be the best option.
To set up such a chroot the Debian way:
- Ensure you are running a kernel that can execute IA32 ELF binaries.
- Install
schroot
andcdebootstrap
. - Create a directory of your choice (I'll use
/usr/local/roots/i386
) and runcdebootstrap -a i386 -f minimal --include "iceweasel" testing /usr/local/roots/i386
(replacetesting
withsid
orjessie
or your choice of Debian release; add any other options you need). - Configure
schroot
to use this directory as a chroot (in/etc/schroot/chroot.d/i386
):[i386]
type=directory
directory=/usr/local/roots/i386
profile=default
Thedefault
profile should already have bind mounts for/home
etc - check in/etc/schroot/default/fstab
to be sure.
Now you should be able to change into the schroot (schroot -c i386
) and then start Iceweasel (or sudo aptitude install
additional packages); you can start it in the chroot directory all in one command: schroot -c i386 iceweasel
.
There's one caveat to all the above: iceweasel
is actually a wrapper script, that looks for a running Iceweasel connected to $DISPLAY
, and if so, uses its remote control protocol to open a new window. So if you're running the 64-bit Iceweasel, then that will be invoked even though you thought you were starting a new 32-bit instance. So you will need to close any native instances before starting the one in your chroot.
As the comments suggest, the usual way is to replace your iceweasel:amd64
package with the iceweasel:i386
package and let the dependencies work through. This is fine if all the dependent libraries are correctly multiarch compatible, but in cases where this doesn't work, a chroot install may be the best option.
To set up such a chroot the Debian way:
- Ensure you are running a kernel that can execute IA32 ELF binaries.
- Install
schroot
andcdebootstrap
. - Create a directory of your choice (I'll use
/usr/local/roots/i386
) and runcdebootstrap -a i386 -f minimal --include "iceweasel" testing /usr/local/roots/i386
(replacetesting
withsid
orjessie
or your choice of Debian release; add any other options you need). - Configure
schroot
to use this directory as a chroot (in/etc/schroot/chroot.d/i386
):[i386]
type=directory
directory=/usr/local/roots/i386
profile=default
Thedefault
profile should already have bind mounts for/home
etc - check in/etc/schroot/default/fstab
to be sure.
Now you should be able to change into the schroot (schroot -c i386
) and then start Iceweasel (or sudo aptitude install
additional packages); you can start it in the chroot directory all in one command: schroot -c i386 iceweasel
.
There's one caveat to all the above: iceweasel
is actually a wrapper script, that looks for a running Iceweasel connected to $DISPLAY
, and if so, uses its remote control protocol to open a new window. So if you're running the 64-bit Iceweasel, then that will be invoked even though you thought you were starting a new 32-bit instance. So you will need to close any native instances before starting the one in your chroot.
edited Jun 16 '15 at 10:05
answered Jun 15 '15 at 15:49
Toby SpeightToby Speight
3,71511533
3,71511533
Thank you, I will try to install schroot over the summer and will comment back if it works. I have replaced the webex meeting by a phone meeting for the moment.
– Paul Rougieux
Jun 16 '15 at 7:32
add a comment |
Thank you, I will try to install schroot over the summer and will comment back if it works. I have replaced the webex meeting by a phone meeting for the moment.
– Paul Rougieux
Jun 16 '15 at 7:32
Thank you, I will try to install schroot over the summer and will comment back if it works. I have replaced the webex meeting by a phone meeting for the moment.
– Paul Rougieux
Jun 16 '15 at 7:32
Thank you, I will try to install schroot over the summer and will comment back if it works. I have replaced the webex meeting by a phone meeting for the moment.
– Paul Rougieux
Jun 16 '15 at 7:32
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f925581%2fhow-to-install-32-bit-iceweasel-firefox-and-java-plugin-so-that-webex-audio-work%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
It sounds like you have a solution. There is no issue with installing 32 bit applications on 64 bit Debian, and it looks like you know how to do that. What do you need help with?
– fixer1234
Jun 9 '15 at 8:52
I need help with starting the 32 bit programs. the command "iceweasel" starts the 64 bit version of the program. And I might also need an alternative approach to install the non free 32 bit flash plugin as it is entering in conflict with the 64 bit version.
– Paul Rougieux
Jun 9 '15 at 13:38
1
An alternative may be to isolate the 32-bit programs and libraries in a chroot (this is the 'old-fashioned' pre-multiarch way). The
schroot
package may be of help with this.– Toby Speight
Jun 9 '15 at 13:43
Just uninstall the 64 bit programs and install the 32 bit programs.
– fixer1234
Jun 9 '15 at 19:15
@fixer1234 that is what I did, replacining 64 bit Iceseasel and the java plugin by the 32 bit version. Then adding more and more 32 bit libraries, until I finally broke my x server. Still without success concerning webex sound.
– Paul Rougieux
Jun 11 '15 at 8:24