Well I have set up my system based on this guide.
https://alioth.debian.org/docman/view.p ... l#id271960
Now I upgraded again to the new chroot which automaticall install schroot.
When I type
Code:
dchroot -c ia32 -d firefox
firefox opens and in the terminal says "observer added"
When I type firefox32 I get "E: Only one command may be specified" and then dumps me back at the terminal.
Firefox32 uses do_dchroot a script set up using that guide from above (and unfortunetly all my menus are based on that.)
it is a simple script
Code:
#!/bin/bash
args=""
for i in "$@" ; do
args="$args '$i'"
done
/usr/bin/dchroot -d "`basename $0`" "$args"
Any ideas? |