View Single Post
Posts: 249 | Thanked: 47 times | Joined on Apr 2010
#313
@juandp

I'm getting this error when i try to run the open office shortcut that i asked few pages earlier...

I used this code :

Code:
if [ "x$UBUNTUIMG" = "x" ] ; then
UBUNTUIMG="`ls -1 /media/mmc1/ubuntu*.img* | head -1`"
fi

if [ "x$UBUNTUCHROOT" = "x" ] ; then
UBUNTUCHROOT="/.ubuntu"
fi

if [ ! -d "$UBUNTUCHROOT" ] ; then
sudo mkdir $UBUNTUCHROOT
fi

quserchroot $UBUNTUIMG $UBUNTUCHROOT "$@"
And this is what i get :

Code:
mount failure!

/media/mmc/ubuntu-m5-v1.2.img.ext2 failed to mount on loop1

mount: mounting /dev/loop0 on /media/mmc1/ubuntu-m5-v1.img.ext2 failed: Device or resource busy
Can't find the part of the code that's related to the ubuntu version, so what should be changed here?