Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com
#!/bin/bashexec &>/dev/null </dev/nullexport DISPLAY=:0echo ""echo "Linux MCE Installer Starting ... please wait"echo ""# create a temp directory to extract to.export WRKDIR=`mktemp -d /tmp/selfextract.XXXXXX`#SKIP=`awk '/^__ARCHIVE_FOLLOWS__/ { print NR + 1; exit 0; }' $0`# Take the TGZ portion of this file and pipe it to tar.#tail -n +$SKIP $0 | tar xz -C $WRKDIRtail -n 5071 /usr/share/mce-installer/mce-installer.sh >/tmp/inst.sh# execute the installation scriptPREV=`pwd`cd $WRKDIRtar xzf /tmp/inst.shexport LD_LIBRARY_PATH=$WRKDIRexport PATH=$PATH:$WRKDIRif [[ $UID != "0" ]] ;then mv ./mce-installer ./mce-installer-user echo "#!/bin/bash LD_LIBRARY_PATH=$WRKDIR ./mce-installer-user " > ./mce-installer chmod +x ./mce-installer ./mce-installer-userelse mkdir -p /home/public/data/samples || : cp ./sample.mpg /home/public/data/samples/ || : ./mce-installerfi# delete the temp filescd $PREVrm -rf $WRKDIRexit 0