in reply to Windows and Linux CDROM Autostart help

For Windows see this M$ tutorial For linux see autorun In either case system settings may disable autorunning of CDs so you would be wise to include file called something like START_WIN32.EXE and START_LINUX for example to make manual starts simple. On Win32 it is AUTORUN.INF that gets automatically parsed, on Linux autorun (lowercase) that gets executed. These files need to be in the root of your CDROM.

AUTORUN.INF (for Win32) ---------------------------- [autorun] Open=CmdLine Icon=IconPathName, IconIndex ---------------------------- autorun (for Linux) ---------------------------- #!/bin/sh exec CmdLine ----------------------------

Often all the two autorun files do is call their respective manual start widgets.

cheers

tachyon

Replies are listed 'Best First'.
Re^2: Windows and Linux CDROM Autostart help
by Anonymous Monk on Oct 19, 2004 at 14:06 UTC
    This was exactly what I needed. Thanks.