32bit chroot usage 

http://www.ubuntuforums.org/showthread.php?t=9428

> To those people that are running a 32bit chroot on AMD64.
>
> Could you please post some examples on how you install native Linux games &
> apps into your chroot & then how you go about launching them?

You can type dchroot -d "command" and it executes that command in the chroot.

I have this script do_chroot in /usr/local/bin:

#!/bin/sh
/usr/bin/dchroot -d "`echo $0 | sed 's|^.*/||'` $*"

Then I create a symbolic link from that to the command I want to execute in the chroot, e.g.:

ln -s /usr/local/bin/do_chroot /usr/local/bin/firefox

which will execute firefox in the chroot environment when I launch it in my normal 64 bit environment. To launch my amd64 firefox I can type /usr/bin/firefox.

Instead if you want you can just create a script for launching the 32bit firefox e.g.:

#!/bin/bash
dchroot -d "firefox"

put it in /usr/local/bin and add it to the gnome menu.

If you're going to start a program that only works in 32bit, first type dchroot -d and you'll be in the 32 bit environment.

ahyden