Jack Malmostoso wrote:
Hi list,I have just upgraded dchroot and schroot to 0.99.2-2 and my dchroot_start script does not work anymore. If I start an application with it I get: [EMAIL PROTECTED]:~$ opera E: Only one command may be specified I: Run "dchroot --help" to list usage example and all available options If I start opera with the dchroot command, it works: [EMAIL PROTECTED]:~$ dchroot -c ia32 -d opera I: [ia32 chroot] Running command: "opera" The script is the standard that came with the AMD64 howto: [EMAIL PROTECTED]:~$ cat /usr/local/bin/dchroot_start #!/bin/bash ARGS="" for i in "$@" ; do ARGS="$ARGS '$i'" done exec dchroot -c ia32 -d -q "`basename $0`" "$ARGS" Any idea on what has changed and how to fix it? Thanks for any pointers!
Try this script instead: #!/bin/sh exec schroot -p -c ia32 -q "`basename $0`" -- "$@" Can someone update the AMD64 HOW-TO? -- Nelson Menezes -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

