hi everyone...
I'm very new to linux areana...and now experiencing..it.
so i wanted tryout autorun cd which open index.html when insert cd without user have to mount.it.
i found code from
http://research.silmaril.ie/autoruncd/
and..code was this..
...........................................................................
#! /bin/sh
# autorun binary for Linux CDs. Put this file on the CD in the root
# directory. It will execute automatically when the CD is inserted.
# It looks for a browser and runs it on index.html or similar.
# Copyleft 1999, 2000, 2001, 2002 Silmaril Consultants
# Terms of the GNU General Public License apply.
###################################################################
BROWSER=`which mozilla 2>&1`
if [ ! -x "$BROWSER" ]; then
BROWSER=`which netscape`
if [ ! -x "$BROWSER" ]; then
BROWSER=`which opera`
if [ ! -x "$BROWSER" ]; then
BROWSER=`which konqueror`
if [ ! -x "$BROWSER" ]; then
echo No known browser available
exit 1
fi
fi
fi
fi
HOMEPAGE=`grep homepage autorun.inf | awk 'BEGIN {FS="="} {print $2}'`
if [ ! -f "$HOMEPAGE" ]; then
$BROWSER /media/cdrom &
fi
$BROWSER $HOMEPAGE &
exit 0
...........................
it says to save text file as autorun and finish..
but i tried this and this didnt work for me...
i was trying it in UBUNTU, FEDORE..TOO...
PLEASE..CAN ANYONE HELP ME...
THANK YOU VERYMUCH..